visual.log 921 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263
  1. 2019-03-27 01:20:08.199 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on MSI with PID 15948 (D:\Visuallnspection_njy\VisualInspection_server\target\classes started by liwei in D:\Visuallnspection_njy\VisualInspection_server)
  2. 2019-03-27 01:20:08.205 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  3. 2019-03-27 01:20:08.508 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  4. 2019-03-27 01:20:08.533 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3f55351b: startup date [Wed Mar 27 01:20:08 GMT+08:00 2019]; root of context hierarchy
  5. 2019-03-27 01:20:12.249 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  6. 2019-03-27 01:20:13.845 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2de5d25d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7. 2019-03-27 01:20:14.110 |-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$$c6939a97] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8. 2019-03-27 01:20:14.134 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9. 2019-03-27 01:20:14.141 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@16749636' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  10. 2019-03-27 01:20:14.156 |-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$$eb683d49] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11. 2019-03-27 01:20:14.185 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  12. 2019-03-27 01:20:14.211 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$19294659] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  13. 2019-03-27 01:20:14.246 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  14. 2019-03-27 01:20:14.250 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$76f8087b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2019-03-27 01:20:15.465 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  16. 2019-03-27 01:20:15.485 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  17. 2019-03-27 01:20:15.487 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  18. 2019-03-27 01:20:15.728 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  19. 2019-03-27 01:20:15.729 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 7196 ms
  20. 2019-03-27 01:20:16.356 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  21. 2019-03-27 01:20:19.781 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  22. 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  23. 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  24. 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  25. 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  26. 2019-03-27 01:20:19.784 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  27. 2019-03-27 01:20:19.784 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  28. 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  29. 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  30. 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  31. 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  32. 2019-03-27 01:20:19.786 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  33. 2019-03-27 01:20:19.786 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  34. 2019-03-27 01:20:19.788 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  35. 2019-03-27 01:20:21.443 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService
  36. 2019-03-27 01:20:21.452 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 'threadExecutor'
  37. 2019-03-27 01:20:21.705 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  38. 2019-03-27 01:20:21.705 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  39. 2019-03-27 01:20:21.843 |-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@21d3f816, org.springframework.security.web.context.SecurityContextPersistenceFilter@6177c3fb, org.springframework.security.web.header.HeaderWriterFilter@2ed3d377, org.springframework.web.filter.CorsFilter@37b107a9, org.springframework.security.web.authentication.logout.LogoutFilter@28d21828, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@3e0d9dcf, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@646dfa9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2c86e7ea, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@58f5c8e8, org.springframework.security.web.session.SessionManagementFilter@77fe989c, org.springframework.security.web.access.ExceptionTranslationFilter@37cfa10a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@696107ef]
  40. 2019-03-27 01:20:21.871 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@609f174e, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2bb85665, org.springframework.security.web.context.SecurityContextPersistenceFilter@49e5244a, org.springframework.security.web.header.HeaderWriterFilter@39763060, org.springframework.security.web.authentication.logout.LogoutFilter@7488cb9, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3818583e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@65c25c1a, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6d3f95f2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@385013c, org.springframework.security.web.session.SessionManagementFilter@abcda84, org.springframework.security.web.access.ExceptionTranslationFilter@525fda86, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4375291a]
  41. 2019-03-27 01:20:22.040 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3f55351b: startup date [Wed Mar 27 01:20:08 GMT+08:00 2019]; root of context hierarchy
  42. 2019-03-27 01:20:22.177 |-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)
  43. 2019-03-27 01:20:22.178 |-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)
  44. 2019-03-27 01:20:22.179 |-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)
  45. 2019-03-27 01:20:22.180 |-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)
  46. 2019-03-27 01:20:22.180 |-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)
  47. 2019-03-27 01:20:22.180 |-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)
  48. 2019-03-27 01:20:22.181 |-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)
  49. 2019-03-27 01:20:22.181 |-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)
  50. 2019-03-27 01:20:22.181 |-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)
  51. 2019-03-27 01:20:22.185 |-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)
  52. 2019-03-27 01:20:22.186 |-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)
  53. 2019-03-27 01:20:22.186 |-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)
  54. 2019-03-27 01:20:22.186 |-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)
  55. 2019-03-27 01:20:22.187 |-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)
  56. 2019-03-27 01:20:22.187 |-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()
  57. 2019-03-27 01:20:22.187 |-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)
  58. 2019-03-27 01:20:22.187 |-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)
  59. 2019-03-27 01:20:22.188 |-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)
  60. 2019-03-27 01:20:22.188 |-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. 2019-03-27 01:20:22.189 |-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)
  62. 2019-03-27 01:20:22.190 |-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)
  63. 2019-03-27 01:20:22.190 |-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)
  64. 2019-03-27 01:20:22.190 |-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()
  65. 2019-03-27 01:20:22.191 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
  66. 2019-03-27 01:20:22.191 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
  67. 2019-03-27 01:20:22.191 |-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)
  68. 2019-03-27 01:20:22.192 |-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)
  69. 2019-03-27 01:20:22.192 |-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)
  70. 2019-03-27 01:20:22.194 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
  71. 2019-03-27 01:20:22.194 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
  72. 2019-03-27 01:20:22.194 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
  73. 2019-03-27 01:20:22.195 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
  74. 2019-03-27 01:20:22.195 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
  75. 2019-03-27 01:20:22.196 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
  76. 2019-03-27 01:20:22.198 |-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)
  77. 2019-03-27 01:20:22.198 |-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)
  78. 2019-03-27 01:20:22.199 |-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)
  79. 2019-03-27 01:20:22.199 |-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)
  80. 2019-03-27 01:20:22.199 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
  81. 2019-03-27 01:20:22.199 |-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)
  82. 2019-03-27 01:20:22.200 |-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)
  83. 2019-03-27 01:20:22.200 |-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)
  84. 2019-03-27 01:20:22.201 |-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>)
  85. 2019-03-27 01:20:22.201 |-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)
  86. 2019-03-27 01:20:22.201 |-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)
  87. 2019-03-27 01:20:22.202 |-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)
  88. 2019-03-27 01:20:22.203 |-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)
  89. 2019-03-27 01:20:22.203 |-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)
  90. 2019-03-27 01:20:22.204 |-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)
  91. 2019-03-27 01:20:22.204 |-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. 2019-03-27 01:20:22.204 |-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)
  93. 2019-03-27 01:20:22.205 |-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)
  94. 2019-03-27 01:20:22.207 |-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()
  95. 2019-03-27 01:20:22.207 |-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)
  96. 2019-03-27 01:20:22.207 |-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
  97. 2019-03-27 01:20:22.208 |-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)
  98. 2019-03-27 01:20:22.208 |-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)
  99. 2019-03-27 01:20:22.208 |-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. 2019-03-27 01:20:22.209 |-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()
  101. 2019-03-27 01:20:22.209 |-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()
  102. 2019-03-27 01:20:22.209 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
  103. 2019-03-27 01:20:22.209 |-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)
  104. 2019-03-27 01:20:22.210 |-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)
  105. 2019-03-27 01:20:22.210 |-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)
  106. 2019-03-27 01:20:22.211 |-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)
  107. 2019-03-27 01:20:22.211 |-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)
  108. 2019-03-27 01:20:22.212 |-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)
  109. 2019-03-27 01:20:22.213 |-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. 2019-03-27 01:20:22.214 |-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. 2019-03-27 01:20:22.214 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
  112. 2019-03-27 01:20:22.215 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
  113. 2019-03-27 01:20:22.215 |-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)
  114. 2019-03-27 01:20:22.216 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
  115. 2019-03-27 01:20:22.216 |-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)
  116. 2019-03-27 01:20:22.216 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
  117. 2019-03-27 01:20:22.217 |-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)
  118. 2019-03-27 01:20:22.217 |-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)
  119. 2019-03-27 01:20:22.219 |-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
  120. 2019-03-27 01:20:22.219 |-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)
  121. 2019-03-27 01:20:22.219 |-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)
  122. 2019-03-27 01:20:22.220 |-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)
  123. 2019-03-27 01:20:22.220 |-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)
  124. 2019-03-27 01:20:22.221 |-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)
  125. 2019-03-27 01:20:22.223 |-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
  126. 2019-03-27 01:20:22.223 |-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
  127. 2019-03-27 01:20:22.224 |-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()
  128. 2019-03-27 01:20:22.224 |-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)
  129. 2019-03-27 01:20:22.225 |-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)
  130. 2019-03-27 01:20:22.225 |-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
  131. 2019-03-27 01:20:22.225 |-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
  132. 2019-03-27 01:20:22.226 |-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)
  133. 2019-03-27 01:20:22.227 |-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
  134. 2019-03-27 01:20:22.228 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  135. 2019-03-27 01:20:22.228 |-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)
  136. 2019-03-27 01:20:22.228 |-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)
  137. 2019-03-27 01:20:22.229 |-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)
  138. 2019-03-27 01:20:22.229 |-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)
  139. 2019-03-27 01:20:22.229 |-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)
  140. 2019-03-27 01:20:22.229 |-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)
  141. 2019-03-27 01:20:22.230 |-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)
  142. 2019-03-27 01:20:22.230 |-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)
  143. 2019-03-27 01:20:22.230 |-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)
  144. 2019-03-27 01:20:22.231 |-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)
  145. 2019-03-27 01:20:22.232 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  146. 2019-03-27 01:20:22.232 |-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)
  147. 2019-03-27 01:20:22.232 |-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()
  148. 2019-03-27 01:20:22.232 |-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)
  149. 2019-03-27 01:20:22.233 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
  150. 2019-03-27 01:20:22.233 |-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)
  151. 2019-03-27 01:20:22.233 |-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)
  152. 2019-03-27 01:20:22.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
  153. 2019-03-27 01:20:22.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
  154. 2019-03-27 01:20:22.237 |-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)
  155. 2019-03-27 01:20:22.237 |-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)
  156. 2019-03-27 01:20:22.237 |-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)
  157. 2019-03-27 01:20:22.237 |-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)
  158. 2019-03-27 01:20:22.238 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
  159. 2019-03-27 01:20:22.238 |-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)
  160. 2019-03-27 01:20:22.238 |-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)
  161. 2019-03-27 01:20:22.239 |-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)
  162. 2019-03-27 01:20:22.239 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
  163. 2019-03-27 01:20:22.239 |-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)
  164. 2019-03-27 01:20:22.242 |-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)
  165. 2019-03-27 01:20:22.243 |-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)
  166. 2019-03-27 01:20:22.243 |-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)
  167. 2019-03-27 01:20:22.243 |-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)
  168. 2019-03-27 01:20:22.244 |-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)
  169. 2019-03-27 01:20:22.244 |-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)
  170. 2019-03-27 01:20:22.245 |-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)
  171. 2019-03-27 01:20:22.245 |-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)
  172. 2019-03-27 01:20:22.245 |-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)
  173. 2019-03-27 01:20:22.246 |-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)
  174. 2019-03-27 01:20:22.247 |-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)
  175. 2019-03-27 01:20:22.247 |-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)
  176. 2019-03-27 01:20:22.247 |-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)
  177. 2019-03-27 01:20:22.247 |-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)
  178. 2019-03-27 01:20:22.248 |-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)
  179. 2019-03-27 01:20:22.248 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
  180. 2019-03-27 01:20:22.251 |-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)
  181. 2019-03-27 01:20:22.251 |-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)
  182. 2019-03-27 01:20:22.252 |-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)
  183. 2019-03-27 01:20:22.252 |-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)
  184. 2019-03-27 01:20:22.253 |-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)
  185. 2019-03-27 01:20:22.253 |-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)
  186. 2019-03-27 01:20:22.254 |-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)
  187. 2019-03-27 01:20:22.254 |-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)
  188. 2019-03-27 01:20:22.255 |-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)
  189. 2019-03-27 01:20:22.255 |-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)
  190. 2019-03-27 01:20:22.256 |-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)
  191. 2019-03-27 01:20:22.256 |-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)
  192. 2019-03-27 01:20:22.256 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
  193. 2019-03-27 01:20:22.257 |-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)
  194. 2019-03-27 01:20:22.258 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
  195. 2019-03-27 01:20:22.258 |-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)
  196. 2019-03-27 01:20:22.258 |-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)
  197. 2019-03-27 01:20:22.261 |-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)
  198. 2019-03-27 01:20:22.261 |-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)
  199. 2019-03-27 01:20:22.262 |-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)
  200. 2019-03-27 01:20:22.263 |-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)
  201. 2019-03-27 01:20:22.263 |-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)
  202. 2019-03-27 01:20:22.263 |-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)
  203. 2019-03-27 01:20:22.264 |-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)
  204. 2019-03-27 01:20:22.264 |-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)
  205. 2019-03-27 01:20:22.265 |-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)
  206. 2019-03-27 01:20:22.265 |-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)
  207. 2019-03-27 01:20:22.268 |-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)
  208. 2019-03-27 01:20:22.268 |-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)
  209. 2019-03-27 01:20:22.269 |-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)
  210. 2019-03-27 01:20:22.269 |-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)
  211. 2019-03-27 01:20:22.270 |-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)
  212. 2019-03-27 01:20:22.270 |-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)
  213. 2019-03-27 01:20:22.271 |-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)
  214. 2019-03-27 01:20:22.271 |-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)
  215. 2019-03-27 01:20:22.273 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  216. 2019-03-27 01:20:22.274 |-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)
  217. 2019-03-27 01:20:22.275 |-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()
  218. 2019-03-27 01:20:22.275 |-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()
  219. 2019-03-27 01:20:22.275 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  220. 2019-03-27 01:20:22.276 |-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()
  221. 2019-03-27 01:20:22.276 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  222. 2019-03-27 01:20:22.277 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  223. 2019-03-27 01:20:22.278 |-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)
  224. 2019-03-27 01:20:22.279 |-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>)
  225. 2019-03-27 01:20:22.279 |-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>)
  226. 2019-03-27 01:20:22.280 |-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)
  227. 2019-03-27 01:20:22.282 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
  228. 2019-03-27 01:20:22.283 |-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()
  229. 2019-03-27 01:20:22.283 |-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
  230. 2019-03-27 01:20:22.283 |-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)
  231. 2019-03-27 01:20:22.283 |-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()
  232. 2019-03-27 01:20:22.284 |-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)
  233. 2019-03-27 01:20:22.284 |-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)
  234. 2019-03-27 01:20:22.285 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
  235. 2019-03-27 01:20:22.285 |-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)
  236. 2019-03-27 01:20:22.286 |-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)
  237. 2019-03-27 01:20:22.287 |-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)
  238. 2019-03-27 01:20:22.287 |-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)
  239. 2019-03-27 01:20:22.289 |-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)
  240. 2019-03-27 01:20:22.289 |-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)
  241. 2019-03-27 01:20:22.290 |-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)
  242. 2019-03-27 01:20:22.398 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  243. 2019-03-27 01:20:22.475 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  244. 2019-03-27 01:20:22.475 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  245. 2019-03-27 01:20:22.532 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  246. 2019-03-27 01:20:22.533 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  247. 2019-03-27 01:20:22.534 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  248. 2019-03-27 01:20:22.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  249. 2019-03-27 01:20:22.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
  250. 2019-03-27 01:20:22.537 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  251. 2019-03-27 01:20:22.538 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  252. 2019-03-27 01:20:22.538 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  253. 2019-03-27 01:20:22.539 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  254. 2019-03-27 01:20:22.540 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  255. 2019-03-27 01:20:22.540 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  256. 2019-03-27 01:20:22.541 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  257. 2019-03-27 01:20:22.541 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  258. 2019-03-27 01:20:22.542 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  259. 2019-03-27 01:20:22.542 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  260. 2019-03-27 01:20:22.544 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  261. 2019-03-27 01:20:22.545 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  262. 2019-03-27 01:20:22.546 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  263. 2019-03-27 01:20:22.547 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  264. 2019-03-27 01:20:22.548 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  265. 2019-03-27 01:20:22.549 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  266. 2019-03-27 01:20:22.549 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  267. 2019-03-27 01:20:22.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  268. 2019-03-27 01:20:22.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  269. 2019-03-27 01:20:22.625 |-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]
  270. 2019-03-27 01:20:23.587 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  271. 2019-03-27 01:20:23.588 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  272. 2019-03-27 01:20:23.589 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  273. 2019-03-27 01:20:24.632 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  274. 2019-03-27 01:20:24.638 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  275. 2019-03-27 01:20:24.657 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  276. 2019-03-27 01:20:24.662 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  277. 2019-03-27 01:20:24.663 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  278. 2019-03-27 01:20:24.664 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  279. 2019-03-27 01:20:24.665 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  280. 2019-03-27 01:20:24.666 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  281. 2019-03-27 01:20:24.668 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  282. 2019-03-27 01:20:24.669 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  283. 2019-03-27 01:20:24.669 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  284. 2019-03-27 01:20:24.669 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  285. 2019-03-27 01:20:24.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  286. 2019-03-27 01:20:24.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  287. 2019-03-27 01:20:24.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  288. 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  289. 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  290. 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  291. 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  292. 2019-03-27 01:20:24.696 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  293. 2019-03-27 01:20:24.698 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  294. 2019-03-27 01:20:24.698 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  295. 2019-03-27 01:20:24.706 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  296. 2019-03-27 01:20:24.747 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  297. 2019-03-27 01:20:25.712 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  298. 2019-03-27 01:20:25.762 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  299. 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  300. 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  301. 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  302. 2019-03-27 01:20:25.787 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  303. 2019-03-27 01:20:25.787 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  304. 2019-03-27 01:20:26.328 |-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)
  305. 2019-03-27 01:20:26.329 |-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()
  306. 2019-03-27 01:20:26.329 |-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)
  307. 2019-03-27 01:20:26.329 |-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()
  308. 2019-03-27 01:20:26.330 |-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()
  309. 2019-03-27 01:20:26.331 |-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)
  310. 2019-03-27 01:20:26.331 |-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>)
  311. 2019-03-27 01:20:26.331 |-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()
  312. 2019-03-27 01:20:26.331 |-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)
  313. 2019-03-27 01:20:26.331 |-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()
  314. 2019-03-27 01:20:26.332 |-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)
  315. 2019-03-27 01:20:26.333 |-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()
  316. 2019-03-27 01:20:26.334 |-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()
  317. 2019-03-27 01:20:26.335 |-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
  318. 2019-03-27 01:20:26.335 |-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()
  319. 2019-03-27 01:20:26.335 |-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()
  320. 2019-03-27 01:20:26.336 |-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()
  321. 2019-03-27 01:20:27.018 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  322. 2019-03-27 01:20:27.026 |-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
  323. 2019-03-27 01:20:27.271 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  324. 2019-03-27 01:20:27.272 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  325. 2019-03-27 01:20:27.272 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  326. 2019-03-27 01:20:27.272 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'xiansuoDataSource' has been autodetected for JMX exposure
  327. 2019-03-27 01:20:27.281 |-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]
  328. 2019-03-27 01:20:27.284 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'xiansuoDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=xiansuoDataSource,type=DruidDataSource]
  329. 2019-03-27 01:20:27.285 |-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]
  330. 2019-03-27 01:20:27.285 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  331. 2019-03-27 01:20:27.290 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  332. 2019-03-27 01:20:27.291 |-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]
  333. 2019-03-27 01:20:27.309 |-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]
  334. 2019-03-27 01:20:27.322 |-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]
  335. 2019-03-27 01:20:27.327 |-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]
  336. 2019-03-27 01:20:27.330 |-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]
  337. 2019-03-27 01:20:27.332 |-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]
  338. 2019-03-27 01:20:27.334 |-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]
  339. 2019-03-27 01:20:27.340 |-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]
  340. 2019-03-27 01:20:27.341 |-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]
  341. 2019-03-27 01:20:27.343 |-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]
  342. 2019-03-27 01:20:27.345 |-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]
  343. 2019-03-27 01:20:27.346 |-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]
  344. 2019-03-27 01:20:27.399 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  345. 2019-03-27 01:20:27.674 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  346. 2019-03-27 01:20:27.688 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  347. 2019-03-27 01:20:27.721 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 95
  348. 2019-03-27 01:20:27.722 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  349. 2019-03-27 01:20:27.725 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  350. 2019-03-27 01:20:27.812 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a
  351. 2019-03-27 01:20:27.812 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  352. 2019-03-27 01:20:27.890 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 681
  353. 2019-03-27 01:20:27.891 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:681
  354. 2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  355. 2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  356. 2019-03-27 01:20:27.902 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 34
  357. 2019-03-27 01:20:27.902 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:34
  358. 2019-03-27 01:20:28.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  359. 2019-03-27 01:20:28.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  360. 2019-03-27 01:20:28.085 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  361. 2019-03-27 01:20:28.085 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:681
  362. 2019-03-27 01:20:28.100 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  363. 2019-03-27 01:20:28.111 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  364. 2019-03-27 01:20:28.122 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  365. 2019-03-27 01:20:28.139 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  366. 2019-03-27 01:20:28.145 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 20.273 seconds (JVM running for 23.84)
  367. 2019-03-27 01:20:28.557 |-INFO [RMI TCP Connection(12)-127.0.0.1] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
  368. 2019-03-27 01:20:55.610 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  369. 2019-03-27 01:20:55.610 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  370. 2019-03-27 01:20:55.660 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 50 ms
  371. 2019-03-27 01:20:55.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  372. 2019-03-27 01:20:55.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  373. 2019-03-27 01:20:55.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  374. 2019-03-27 01:20:55.801 |-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
  375. 2019-03-27 01:20:55.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  376. 2019-03-27 01:20:55.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  377. 2019-03-27 01:20:55.817 |-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=?)
  378. 2019-03-27 01:20:55.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  379. 2019-03-27 01:20:55.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  380. 2019-03-27 01:20:55.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  381. 2019-03-27 01:20:55.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  382. 2019-03-27 01:20:55.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  383. 2019-03-27 01:20:55.843 |-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
  384. 2019-03-27 01:20:55.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  385. 2019-03-27 01:20:55.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  386. 2019-03-27 01:20:55.860 |-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=?)
  387. 2019-03-27 01:20:55.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  388. 2019-03-27 01:20:55.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  389. 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  390. 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  391. 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  392. 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  393. 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  394. 2019-03-27 01:20:56.366 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  395. 2019-03-27 01:20:56.367 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  396. 2019-03-27 01:20:56.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  397. 2019-03-27 01:20:56.376 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  398. 2019-03-27 01:20:56.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  399. 2019-03-27 01:20:56.377 |-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
  400. 2019-03-27 01:20:56.378 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  401. 2019-03-27 01:20:56.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  402. 2019-03-27 01:20:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  403. 2019-03-27 01:20:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  404. 2019-03-27 01:20:56.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  405. 2019-03-27 01:20:56.391 |-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
  406. 2019-03-27 01:20:56.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  407. 2019-03-27 01:20:56.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  408. 2019-03-27 01:20:56.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  409. 2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  410. 2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  411. 2019-03-27 01:20:56.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=?)
  412. 2019-03-27 01:20:56.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  413. 2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  414. 2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  415. 2019-03-27 01:20:56.417 |-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
  416. 2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  417. 2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  418. 2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  419. 2019-03-27 01:20:56.421 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  420. 2019-03-27 01:20:56.423 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  421. 2019-03-27 01:20:56.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  422. 2019-03-27 01:20:56.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  423. 2019-03-27 01:20:56.431 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  424. 2019-03-27 01:20:56.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  425. 2019-03-27 01:20:56.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  426. 2019-03-27 01:20:56.442 |-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
  427. 2019-03-27 01:20:56.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  428. 2019-03-27 01:20:56.446 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  429. 2019-03-27 01:20:56.448 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  430. 2019-03-27 01:20:56.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  431. 2019-03-27 01:20:56.456 |-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
  432. 2019-03-27 01:20:56.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  433. 2019-03-27 01:20:56.462 |-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=?)
  434. 2019-03-27 01:20:56.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  435. 2019-03-27 01:20:56.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  436. 2019-03-27 01:20:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  437. 2019-03-27 01:20:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  438. 2019-03-27 01:20:56.473 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  439. 2019-03-27 01:20:56.474 |-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=?)
  440. 2019-03-27 01:20:56.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  441. 2019-03-27 01:20:56.478 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  442. 2019-03-27 01:20:56.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  443. 2019-03-27 01:20:56.479 |-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=?)
  444. 2019-03-27 01:20:56.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  445. 2019-03-27 01:20:56.480 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  446. 2019-03-27 01:20:56.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  447. 2019-03-27 01:20:56.488 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  448. 2019-03-27 01:20:56.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  449. 2019-03-27 01:20:56.490 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  450. 2019-03-27 01:20:56.496 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  451. 2019-03-27 01:20:56.499 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  452. 2019-03-27 01:20:56.502 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  453. 2019-03-27 01:20:56.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  454. 2019-03-27 01:20:56.512 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  455. 2019-03-27 01:20:56.518 |-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
  456. 2019-03-27 01:20:56.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  457. 2019-03-27 01:20:56.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  458. 2019-03-27 01:20:56.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  459. 2019-03-27 01:20:56.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
  460. 2019-03-27 01:20:56.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 79
  461. 2019-03-27 01:20:56.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  462. 2019-03-27 01:20:56.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  463. 2019-03-27 01:20:56.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  464. 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  465. 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  466. 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  467. 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  468. 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  469. 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  470. 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  471. 2019-03-27 01:20:56.630 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  472. 2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  473. 2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  474. 2019-03-27 01:20:56.631 |-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
  475. 2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  476. 2019-03-27 01:20:56.632 |-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
  477. 2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  478. 2019-03-27 01:20:56.633 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  479. 2019-03-27 01:20:56.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  480. 2019-03-27 01:20:56.645 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  481. 2019-03-27 01:20:56.646 |-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
  482. 2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  483. 2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  484. 2019-03-27 01:20:56.646 |-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=?)
  485. 2019-03-27 01:20:56.648 |-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=?)
  486. 2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  487. 2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  488. 2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  489. 2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  490. 2019-03-27 01:20:56.981 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  491. 2019-03-27 01:20:56.983 |-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=?)
  492. 2019-03-27 01:20:56.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  493. 2019-03-27 01:20:56.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  494. 2019-03-27 01:20:57.010 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  495. 2019-03-27 01:20:57.010 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  496. 2019-03-27 01:20:57.010 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  497. 2019-03-27 01:20:57.012 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  498. 2019-03-27 01:20:57.012 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  499. 2019-03-27 01:20:57.013 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  500. 2019-03-27 01:20:57.016 |-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
  501. 2019-03-27 01:20:57.016 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  502. 2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  503. 2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  504. 2019-03-27 01:20:57.019 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  505. 2019-03-27 01:20:57.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  506. 2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  507. 2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  508. 2019-03-27 01:20:57.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  509. 2019-03-27 01:20:57.054 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  510. 2019-03-27 01:20:57.056 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  511. 2019-03-27 01:20:57.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  512. 2019-03-27 01:20:57.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  513. 2019-03-27 01:20:57.067 |-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
  514. 2019-03-27 01:20:57.068 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  515. 2019-03-27 01:20:57.079 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  516. 2019-03-27 01:20:57.080 |-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=?)
  517. 2019-03-27 01:20:57.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  518. 2019-03-27 01:20:57.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  519. 2019-03-27 01:20:57.094 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  520. 2019-03-27 01:20:57.095 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  521. 2019-03-27 01:20:57.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  522. 2019-03-27 01:20:57.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  523. 2019-03-27 01:20:57.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 591
  524. 2019-03-27 01:20:57.234 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  525. 2019-03-27 01:20:57.235 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  526. 2019-03-27 01:20:57.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  527. 2019-03-27 01:20:57.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  528. 2019-03-27 01:20:57.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  529. 2019-03-27 01:20:57.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  530. 2019-03-27 01:20:57.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  531. 2019-03-27 01:20:57.258 |-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=?)
  532. 2019-03-27 01:20:57.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  533. 2019-03-27 01:20:57.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  534. 2019-03-27 01:20:57.272 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  535. 2019-03-27 01:20:57.274 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  536. 2019-03-27 01:20:57.281 |-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=?
  537. 2019-03-27 01:20:57.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  538. 2019-03-27 01:20:57.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  539. 2019-03-27 01:20:57.444 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  540. 2019-03-27 01:20:57.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  541. 2019-03-27 01:20:57.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  542. 2019-03-27 01:20:57.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  543. 2019-03-27 01:20:57.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  544. 2019-03-27 01:20:57.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  545. 2019-03-27 01:20:57.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  546. 2019-03-27 01:20:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  547. 2019-03-27 01:20:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  548. 2019-03-27 01:20:57.476 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  549. 2019-03-27 01:20:57.480 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  550. 2019-03-27 01:20:57.482 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  551. 2019-03-27 01:20:57.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count
  552. 2019-03-27 01:20:57.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  553. 2019-03-27 01:20:57.570 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  554. 2019-03-27 01:20:57.571 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,?
  555. 2019-03-27 01:20:57.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  556. 2019-03-27 01:20:57.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  557. 2019-03-27 01:20:59.527 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  558. 2019-03-27 01:20:59.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  559. 2019-03-27 01:20:59.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
  560. 2019-03-27 01:20:59.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  561. 2019-03-27 01:20:59.552 |-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
  562. 2019-03-27 01:20:59.552 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
  563. 2019-03-27 01:20:59.579 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
  564. 2019-03-27 01:20:59.580 |-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=?)
  565. 2019-03-27 01:20:59.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
  566. 2019-03-27 01:20:59.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  567. 2019-03-27 01:20:59.592 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
  568. 2019-03-27 01:20:59.594 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
  569. 2019-03-27 01:21:03.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  570. 2019-03-27 01:21:03.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  571. 2019-03-27 01:21:03.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  572. 2019-03-27 01:21:03.216 |-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
  573. 2019-03-27 01:21:03.217 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  574. 2019-03-27 01:21:03.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  575. 2019-03-27 01:21:03.226 |-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=?)
  576. 2019-03-27 01:21:03.227 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  577. 2019-03-27 01:21:03.234 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  578. 2019-03-27 01:21:03.235 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  579. 2019-03-27 01:21:03.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  580. 2019-03-27 01:21:03.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  581. 2019-03-27 01:21:03.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  582. 2019-03-27 01:21:03.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  583. 2019-03-27 01:21:03.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  584. 2019-03-27 01:21:03.259 |-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=?)
  585. 2019-03-27 01:21:03.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  586. 2019-03-27 01:21:03.268 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  587. 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  588. 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  589. 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  590. 2019-03-27 01:21:03.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  591. 2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  592. 2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  593. 2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  594. 2019-03-27 01:21:03.438 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  595. 2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  596. 2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  597. 2019-03-27 01:21:03.440 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  598. 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  599. 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  600. 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  601. 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  602. 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  603. 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  604. 2019-03-27 01:21:03.448 |-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
  605. 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  606. 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  607. 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  608. 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  609. 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  610. 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  611. 2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  612. 2019-03-27 01:21:03.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  613. 2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  614. 2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  615. 2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  616. 2019-03-27 01:21:03.461 |-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
  617. 2019-03-27 01:21:03.462 |-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=?)
  618. 2019-03-27 01:21:03.462 |-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=?)
  619. 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  620. 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  621. 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  622. 2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  623. 2019-03-27 01:21:03.470 |-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
  624. 2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  625. 2019-03-27 01:21:03.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  626. 2019-03-27 01:21:03.471 |-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=?)
  627. 2019-03-27 01:21:03.472 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  628. 2019-03-27 01:21:03.472 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  629. 2019-03-27 01:21:03.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  630. 2019-03-27 01:21:03.473 |-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=?)
  631. 2019-03-27 01:21:03.474 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  632. 2019-03-27 01:21:03.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  633. 2019-03-27 01:21:03.474 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  634. 2019-03-27 01:21:03.476 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  635. 2019-03-27 01:21:03.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  636. 2019-03-27 01:21:03.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  637. 2019-03-27 01:21:03.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  638. 2019-03-27 01:21:03.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  639. 2019-03-27 01:21:03.482 |-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=?)
  640. 2019-03-27 01:21:03.483 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  641. 2019-03-27 01:21:03.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  642. 2019-03-27 01:21:03.484 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  643. 2019-03-27 01:21:03.484 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  644. 2019-03-27 01:21:03.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  645. 2019-03-27 01:21:03.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  646. 2019-03-27 01:21:03.488 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  647. 2019-03-27 01:21:03.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  648. 2019-03-27 01:21:03.490 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  649. 2019-03-27 01:21:03.490 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  650. 2019-03-27 01:21:03.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  651. 2019-03-27 01:21:03.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
  652. 2019-03-27 01:21:03.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  653. 2019-03-27 01:21:03.496 |-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
  654. 2019-03-27 01:21:03.497 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  655. 2019-03-27 01:21:03.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  656. 2019-03-27 01:21:03.498 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  657. 2019-03-27 01:21:03.500 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  658. 2019-03-27 01:21:03.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 79
  659. 2019-03-27 01:21:03.510 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  660. 2019-03-27 01:21:03.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  661. 2019-03-27 01:21:03.521 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  662. 2019-03-27 01:21:03.557 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  663. 2019-03-27 01:21:03.558 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  664. 2019-03-27 01:21:03.558 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  665. 2019-03-27 01:21:03.560 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  666. 2019-03-27 01:21:03.560 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  667. 2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  668. 2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  669. 2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  670. 2019-03-27 01:21:03.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  671. 2019-03-27 01:21:03.570 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  672. 2019-03-27 01:21:03.571 |-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
  673. 2019-03-27 01:21:03.572 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  674. 2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  675. 2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  676. 2019-03-27 01:21:03.574 |-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
  677. 2019-03-27 01:21:03.574 |-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
  678. 2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  679. 2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  680. 2019-03-27 01:21:03.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  681. 2019-03-27 01:21:03.584 |-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=?)
  682. 2019-03-27 01:21:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  683. 2019-03-27 01:21:03.585 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  684. 2019-03-27 01:21:03.586 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  685. 2019-03-27 01:21:03.586 |-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=?)
  686. 2019-03-27 01:21:03.587 |-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=?)
  687. 2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  688. 2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  689. 2019-03-27 01:21:03.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  690. 2019-03-27 01:21:03.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  691. 2019-03-27 01:21:03.597 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  692. 2019-03-27 01:21:03.598 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  693. 2019-03-27 01:21:03.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  694. 2019-03-27 01:21:03.598 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  695. 2019-03-27 01:21:03.600 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  696. 2019-03-27 01:21:03.601 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  697. 2019-03-27 01:21:03.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
  698. 2019-03-27 01:21:03.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
  699. 2019-03-27 01:21:03.602 |-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
  700. 2019-03-27 01:21:03.603 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  701. 2019-03-27 01:21:03.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  702. 2019-03-27 01:21:03.604 |-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
  703. 2019-03-27 01:21:03.604 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  704. 2019-03-27 01:21:03.611 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
  705. 2019-03-27 01:21:03.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  706. 2019-03-27 01:21:03.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
  707. 2019-03-27 01:21:03.625 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  708. 2019-03-27 01:21:03.626 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  709. 2019-03-27 01:21:03.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  710. 2019-03-27 01:21:03.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  711. 2019-03-27 01:21:03.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  712. 2019-03-27 01:21:03.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  713. 2019-03-27 01:21:03.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  714. 2019-03-27 01:21:03.644 |-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=?)
  715. 2019-03-27 01:21:03.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  716. 2019-03-27 01:21:03.653 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  717. 2019-03-27 01:21:03.656 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  718. 2019-03-27 01:21:03.658 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  719. 2019-03-27 01:21:03.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno
  720. 2019-03-27 01:21:03.665 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  721. 2019-03-27 01:21:03.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 591
  722. 2019-03-27 01:21:03.752 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  723. 2019-03-27 01:21:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  724. 2019-03-27 01:21:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  725. 2019-03-27 01:21:03.762 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  726. 2019-03-27 01:21:03.763 |-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
  727. 2019-03-27 01:21:03.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  728. 2019-03-27 01:21:03.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  729. 2019-03-27 01:21:03.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  730. 2019-03-27 01:21:03.773 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  731. 2019-03-27 01:21:03.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  732. 2019-03-27 01:21:03.781 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  733. 2019-03-27 01:21:03.782 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  734. 2019-03-27 01:21:03.786 |-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=?
  735. 2019-03-27 01:21:03.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  736. 2019-03-27 01:21:03.793 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  737. 2019-03-27 01:21:03.892 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  738. 2019-03-27 01:21:03.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  739. 2019-03-27 01:21:03.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  740. 2019-03-27 01:21:03.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  741. 2019-03-27 01:21:03.904 |-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
  742. 2019-03-27 01:21:03.905 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  743. 2019-03-27 01:21:03.915 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  744. 2019-03-27 01:21:03.916 |-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=?)
  745. 2019-03-27 01:21:03.917 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  746. 2019-03-27 01:21:03.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  747. 2019-03-27 01:21:03.929 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  748. 2019-03-27 01:21:03.931 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  749. 2019-03-27 01:21:03.939 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count
  750. 2019-03-27 01:21:03.940 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 46(Long)
  751. 2019-03-27 01:21:03.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
  752. 2019-03-27 01:21:05.666 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  753. 2019-03-27 01:21:05.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  754. 2019-03-27 01:21:05.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  755. 2019-03-27 01:21:05.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  756. 2019-03-27 01:21:05.679 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  757. 2019-03-27 01:21:05.679 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  758. 2019-03-27 01:21:05.680 |-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
  759. 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  760. 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  761. 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  762. 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  763. 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  764. 2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  765. 2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  766. 2019-03-27 01:21:05.690 |-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
  767. 2019-03-27 01:21:05.690 |-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
  768. 2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  769. 2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  770. 2019-03-27 01:21:05.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  771. 2019-03-27 01:21:05.693 |-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=?)
  772. 2019-03-27 01:21:05.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  773. 2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  774. 2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  775. 2019-03-27 01:21:05.701 |-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=?)
  776. 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  777. 2019-03-27 01:21:05.701 |-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=?)
  778. 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  779. 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  780. 2019-03-27 01:21:05.703 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  781. 2019-03-27 01:21:05.705 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  782. 2019-03-27 01:21:05.707 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1
  783. 2019-03-27 01:21:05.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
  784. 2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  785. 2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  786. 2019-03-27 01:21:05.713 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  787. 2019-03-27 01:21:05.713 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  788. 2019-03-27 01:21:05.716 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  789. 2019-03-27 01:21:05.716 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  790. 2019-03-27 01:21:05.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
  791. 2019-03-27 01:21:05.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ?
  792. 2019-03-27 01:21:05.721 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
  793. 2019-03-27 01:21:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Preparing: SELECT * FROM sys_role where 1=1
  794. 2019-03-27 01:21:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
  795. 2019-03-27 01:21:05.729 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
  796. 2019-03-27 01:21:05.730 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
  797. 2019-03-27 01:21:08.529 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  798. 2019-03-27 01:21:08.529 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  799. 2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  800. 2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  801. 2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  802. 2019-03-27 01:21:08.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  803. 2019-03-27 01:21:08.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  804. 2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  805. 2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  806. 2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  807. 2019-03-27 01:21:08.543 |-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
  808. 2019-03-27 01:21:08.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  809. 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  810. 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  811. 2019-03-27 01:21:08.552 |-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=?)
  812. 2019-03-27 01:21:08.552 |-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=?)
  813. 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  814. 2019-03-27 01:21:08.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  815. 2019-03-27 01:21:08.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  816. 2019-03-27 01:21:08.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  817. 2019-03-27 01:21:08.565 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  818. 2019-03-27 01:21:08.566 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  819. 2019-03-27 01:21:08.567 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  820. 2019-03-27 01:21:08.568 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  821. 2019-03-27 01:21:08.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno
  822. 2019-03-27 01:21:08.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 46(Integer)
  823. 2019-03-27 01:21:08.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 21
  824. 2019-03-27 01:21:08.581 |-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
  825. 2019-03-27 01:21:08.581 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  826. 2019-03-27 01:21:08.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  827. 2019-03-27 01:21:08.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Parameters: 46(Long), 1(Long)
  828. 2019-03-27 01:21:08.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <== Total: 1
  829. 2019-03-27 01:21:08.595 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==> Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,?
  830. 2019-03-27 01:21:08.595 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==> Parameters: 46(Long), 1(Long), 0(Integer), 10(Integer)
  831. 2019-03-27 01:21:08.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  832. 2019-03-27 01:21:08.602 |-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=?)
  833. 2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  834. 2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| <== Total: 1
  835. 2019-03-27 01:21:08.610 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  836. 2019-03-27 01:21:08.611 |-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
  837. 2019-03-27 01:21:08.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3112(Integer)
  838. 2019-03-27 01:21:08.623 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  839. 2019-03-27 01:21:08.625 |-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=?)
  840. 2019-03-27 01:21:08.625 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3112(Integer)
  841. 2019-03-27 01:21:08.632 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  842. 2019-03-27 01:21:08.633 |-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
  843. 2019-03-27 01:21:08.633 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3113(Integer)
  844. 2019-03-27 01:21:08.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  845. 2019-03-27 01:21:08.646 |-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=?)
  846. 2019-03-27 01:21:08.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3113(Integer)
  847. 2019-03-27 01:21:08.656 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  848. 2019-03-27 01:21:08.658 |-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
  849. 2019-03-27 01:21:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2637(Integer)
  850. 2019-03-27 01:21:08.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  851. 2019-03-27 01:21:08.670 |-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=?)
  852. 2019-03-27 01:21:08.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2637(Integer)
  853. 2019-03-27 01:21:08.680 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  854. 2019-03-27 01:21:08.680 |-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
  855. 2019-03-27 01:21:08.681 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2639(Integer)
  856. 2019-03-27 01:21:08.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 28
  857. 2019-03-27 01:21:08.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  858. 2019-03-27 01:21:08.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2639(Integer)
  859. 2019-03-27 01:21:08.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  860. 2019-03-27 01:21:08.703 |-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
  861. 2019-03-27 01:21:08.704 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2644(Integer)
  862. 2019-03-27 01:21:08.714 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  863. 2019-03-27 01:21:08.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  864. 2019-03-27 01:21:08.716 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2644(Integer)
  865. 2019-03-27 01:21:08.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  866. 2019-03-27 01:21:08.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
  867. 2019-03-27 01:21:08.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2646(Integer)
  868. 2019-03-27 01:21:08.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  869. 2019-03-27 01:21:08.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  870. 2019-03-27 01:21:08.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2646(Integer)
  871. 2019-03-27 01:21:08.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  872. 2019-03-27 01:21:08.745 |-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
  873. 2019-03-27 01:21:08.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2640(Integer)
  874. 2019-03-27 01:21:08.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  875. 2019-03-27 01:21:08.755 |-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=?)
  876. 2019-03-27 01:21:08.756 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2640(Integer)
  877. 2019-03-27 01:21:08.765 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  878. 2019-03-27 01:21:08.767 |-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
  879. 2019-03-27 01:21:08.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2650(Integer)
  880. 2019-03-27 01:21:08.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
  881. 2019-03-27 01:21:08.778 |-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=?)
  882. 2019-03-27 01:21:08.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2650(Integer)
  883. 2019-03-27 01:21:08.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  884. 2019-03-27 01:21:08.787 |-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
  885. 2019-03-27 01:21:08.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2642(Integer)
  886. 2019-03-27 01:21:08.798 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  887. 2019-03-27 01:21:08.799 |-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=?)
  888. 2019-03-27 01:21:08.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2642(Integer)
  889. 2019-03-27 01:21:08.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  890. 2019-03-27 01:21:08.809 |-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
  891. 2019-03-27 01:21:08.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2645(Integer)
  892. 2019-03-27 01:21:08.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  893. 2019-03-27 01:21:08.821 |-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=?)
  894. 2019-03-27 01:21:08.822 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2645(Integer)
  895. 2019-03-27 01:21:08.830 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  896. 2019-03-27 01:21:08.831 |-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
  897. 2019-03-27 01:21:08.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2641(Integer)
  898. 2019-03-27 01:21:08.840 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  899. 2019-03-27 01:21:08.841 |-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=?)
  900. 2019-03-27 01:21:08.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2641(Integer)
  901. 2019-03-27 01:21:08.850 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  902. 2019-03-27 01:21:08.851 |-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
  903. 2019-03-27 01:21:08.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3114(Integer)
  904. 2019-03-27 01:21:08.860 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  905. 2019-03-27 01:21:08.861 |-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=?)
  906. 2019-03-27 01:21:08.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3114(Integer)
  907. 2019-03-27 01:21:08.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 0
  908. 2019-03-27 01:21:08.870 |-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
  909. 2019-03-27 01:21:08.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2653(Integer)
  910. 2019-03-27 01:21:08.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  911. 2019-03-27 01:21:08.880 |-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=?)
  912. 2019-03-27 01:21:08.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2653(Integer)
  913. 2019-03-27 01:21:08.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  914. 2019-03-27 01:21:08.892 |-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
  915. 2019-03-27 01:21:08.892 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2648(Integer)
  916. 2019-03-27 01:21:08.901 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  917. 2019-03-27 01:21:08.902 |-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=?)
  918. 2019-03-27 01:21:08.903 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2648(Integer)
  919. 2019-03-27 01:21:08.912 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  920. 2019-03-27 01:21:08.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
  921. 2019-03-27 01:21:08.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2651(Integer)
  922. 2019-03-27 01:21:08.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  923. 2019-03-27 01:21:08.927 |-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=?)
  924. 2019-03-27 01:21:08.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2651(Integer)
  925. 2019-03-27 01:21:08.935 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  926. 2019-03-27 01:21:08.935 |-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
  927. 2019-03-27 01:21:08.936 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2647(Integer)
  928. 2019-03-27 01:21:08.944 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  929. 2019-03-27 01:21:08.945 |-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=?)
  930. 2019-03-27 01:21:08.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2647(Integer)
  931. 2019-03-27 01:21:08.955 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  932. 2019-03-27 01:21:08.957 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  933. 2019-03-27 01:21:08.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2654(Integer)
  934. 2019-03-27 01:21:08.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  935. 2019-03-27 01:21:08.971 |-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=?)
  936. 2019-03-27 01:21:08.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2654(Integer)
  937. 2019-03-27 01:21:08.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  938. 2019-03-27 01:21:08.982 |-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
  939. 2019-03-27 01:21:08.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2649(Integer)
  940. 2019-03-27 01:21:08.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  941. 2019-03-27 01:21:08.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  942. 2019-03-27 01:21:08.995 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2649(Integer)
  943. 2019-03-27 01:21:09.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  944. 2019-03-27 01:21:09.006 |-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
  945. 2019-03-27 01:21:09.007 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2626(Integer)
  946. 2019-03-27 01:21:09.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  947. 2019-03-27 01:21:09.018 |-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=?)
  948. 2019-03-27 01:21:09.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2626(Integer)
  949. 2019-03-27 01:21:09.029 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  950. 2019-03-27 01:21:09.030 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  951. 2019-03-27 01:21:09.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2477(Integer)
  952. 2019-03-27 01:21:09.039 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
  953. 2019-03-27 01:21:09.040 |-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=?)
  954. 2019-03-27 01:21:09.041 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2477(Integer)
  955. 2019-03-27 01:21:09.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  956. 2019-03-27 01:21:09.093 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  957. 2019-03-27 01:21:09.094 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  958. 2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  959. 2019-03-27 01:21:09.095 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  960. 2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  961. 2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  962. 2019-03-27 01:21:09.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  963. 2019-03-27 01:21:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  964. 2019-03-27 01:21:09.097 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  965. 2019-03-27 01:21:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  966. 2019-03-27 01:21:09.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  967. 2019-03-27 01:21:09.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  968. 2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  969. 2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  970. 2019-03-27 01:21:09.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  971. 2019-03-27 01:21:09.105 |-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
  972. 2019-03-27 01:21:09.106 |-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
  973. 2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  974. 2019-03-27 01:21:09.106 |-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
  975. 2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  976. 2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  977. 2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  978. 2019-03-27 01:21:09.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  979. 2019-03-27 01:21:09.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  980. 2019-03-27 01:21:09.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  981. 2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  982. 2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  983. 2019-03-27 01:21:09.118 |-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=?)
  984. 2019-03-27 01:21:09.118 |-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=?)
  985. 2019-03-27 01:21:09.119 |-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=?)
  986. 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  987. 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  988. 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  989. 2019-03-27 01:21:09.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  990. 2019-03-27 01:21:09.122 |-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=?)
  991. 2019-03-27 01:21:09.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  992. 2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  993. 2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  994. 2019-03-27 01:21:09.131 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  995. 2019-03-27 01:21:09.131 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  996. 2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  997. 2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  998. 2019-03-27 01:21:09.132 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  999. 2019-03-27 01:21:09.132 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1000. 2019-03-27 01:21:09.133 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1001. 2019-03-27 01:21:09.133 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1002. 2019-03-27 01:21:09.135 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1003. 2019-03-27 01:21:09.135 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1004. 2019-03-27 01:21:09.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1005. 2019-03-27 01:21:09.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
  1006. 2019-03-27 01:21:09.143 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ?
  1007. 2019-03-27 01:21:09.144 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 46(Long), 1(Long)
  1008. 2019-03-27 01:21:09.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1009. 2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Preparing: SELECT * FROM sys_class_type where 1=1
  1010. 2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  1011. 2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters:
  1012. 2019-03-27 01:21:09.147 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-01 00:00:00.0(Timestamp), 2019-03-31 23:59:59.0(Timestamp), 1(Integer)
  1013. 2019-03-27 01:21:09.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
  1014. 2019-03-27 01:21:09.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,?
  1015. 2019-03-27 01:21:09.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 46(Long), 1(Long), 0(Integer), 50(Integer)
  1016. 2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <== Total: 3
  1017. 2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 3
  1018. 2019-03-27 01:21:09.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 1
  1019. 2019-03-27 01:21:10.496 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1020. 2019-03-27 01:21:10.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1021. 2019-03-27 01:21:10.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  1022. 2019-03-27 01:21:10.506 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1023. 2019-03-27 01:21:10.507 |-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
  1024. 2019-03-27 01:21:10.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  1025. 2019-03-27 01:21:10.517 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  1026. 2019-03-27 01:21:10.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1027. 2019-03-27 01:21:10.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  1028. 2019-03-27 01:21:10.526 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1029. 2019-03-27 01:21:10.528 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1030. 2019-03-27 01:21:10.528 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1031. 2019-03-27 01:21:10.531 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =?
  1032. 2019-03-27 01:21:10.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 46(Long), 2019-03-27 00:00:00.0(Timestamp), 2019-03-27 00:00:00.0(Timestamp), 1(Integer)
  1033. 2019-03-27 01:21:10.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <== Total: 0
  1034. 2019-03-27 01:21:12.522 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1035. 2019-03-27 01:21:12.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1036. 2019-03-27 01:21:12.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  1037. 2019-03-27 01:21:12.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1038. 2019-03-27 01:21:12.536 |-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
  1039. 2019-03-27 01:21:12.537 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  1040. 2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  1041. 2019-03-27 01:21:12.547 |-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=?)
  1042. 2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  1043. 2019-03-27 01:21:12.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1044. 2019-03-27 01:21:12.558 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1045. 2019-03-27 01:21:12.559 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1046. 2019-03-27 01:21:12.561 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  1047. 2019-03-27 01:21:12.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-27 00:00:00.0(Timestamp), 2019-03-27 00:00:00.0(Timestamp), 1(Integer)
  1048. 2019-03-27 01:21:12.570 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
  1049. 2019-03-27 01:21:15.525 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1050. 2019-03-27 01:21:15.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1051. 2019-03-27 01:21:15.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  1052. 2019-03-27 01:21:15.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1053. 2019-03-27 01:21:15.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
  1054. 2019-03-27 01:21:15.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  1055. 2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  1056. 2019-03-27 01:21:15.547 |-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=?)
  1057. 2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  1058. 2019-03-27 01:21:15.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1059. 2019-03-27 01:21:15.556 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1060. 2019-03-27 01:21:15.558 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1061. 2019-03-27 01:21:15.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| ==> Preparing: SELECT * FROM sys_code WHERE code_flag=? and code_value=? and valid!=0
  1062. 2019-03-27 01:21:15.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| ==> Parameters: record_class_days(String), 1(Integer)
  1063. 2019-03-27 01:21:15.573 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| <== Total: 1
  1064. 2019-03-27 01:21:15.586 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1065. 2019-03-27 01:21:15.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1066. 2019-03-27 01:21:15.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  1067. 2019-03-27 01:21:15.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1068. 2019-03-27 01:21:15.598 |-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
  1069. 2019-03-27 01:21:15.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  1070. 2019-03-27 01:21:15.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  1071. 2019-03-27 01:21:15.608 |-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=?)
  1072. 2019-03-27 01:21:15.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  1073. 2019-03-27 01:21:15.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1074. 2019-03-27 01:21:15.624 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  1075. 2019-03-27 01:21:15.626 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  1076. 2019-03-27 01:21:15.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  1077. 2019-03-27 01:21:15.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  1078. 2019-03-27 01:21:15.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 34
  1079. 2019-03-27 01:21:15.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1080. 2019-03-27 01:21:15.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
  1081. 2019-03-27 01:21:15.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1082. 2019-03-27 01:21:15.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1083. 2019-03-27 01:21:15.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
  1084. 2019-03-27 01:21:15.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1085. 2019-03-27 01:21:15.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1086. 2019-03-27 01:21:15.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  1087. 2019-03-27 01:21:15.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1088. 2019-03-27 01:21:15.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1089. 2019-03-27 01:21:15.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
  1090. 2019-03-27 01:21:15.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1091. 2019-03-27 01:21:15.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1092. 2019-03-27 01:21:15.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 1(Integer), null, null
  1093. 2019-03-27 01:21:15.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1094. 2019-03-27 01:21:15.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1095. 2019-03-27 01:21:15.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 2(Integer), null, null
  1096. 2019-03-27 01:21:15.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1097. 2019-03-27 01:21:15.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1098. 2019-03-27 01:21:15.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 3(Integer), null, null
  1099. 2019-03-27 01:21:16.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1100. 2019-03-27 01:21:16.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1101. 2019-03-27 01:21:16.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  1102. 2019-03-27 01:21:16.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1103. 2019-03-27 01:21:16.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1104. 2019-03-27 01:21:16.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  1105. 2019-03-27 01:21:16.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1106. 2019-03-27 01:21:16.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1107. 2019-03-27 01:21:16.154 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  1108. 2019-03-27 01:21:16.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1109. 2019-03-27 01:21:16.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1110. 2019-03-27 01:21:16.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  1111. 2019-03-27 01:21:16.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1112. 2019-03-27 01:21:16.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1113. 2019-03-27 01:21:16.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  1114. 2019-03-27 01:21:16.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1115. 2019-03-27 01:21:16.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1116. 2019-03-27 01:21:16.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -6(Integer), null, null
  1117. 2019-03-27 01:21:16.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1118. 2019-03-27 01:21:16.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1119. 2019-03-27 01:21:16.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  1120. 2019-03-27 01:21:16.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1121. 2019-03-27 01:21:16.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1122. 2019-03-27 01:21:16.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
  1123. 2019-03-27 01:21:16.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1124. 2019-03-27 01:21:16.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1125. 2019-03-27 01:21:16.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 1(Integer), null, null
  1126. 2019-03-27 01:21:16.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1127. 2019-03-27 01:21:16.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1128. 2019-03-27 01:21:16.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 2(Integer), null, null
  1129. 2019-03-27 01:21:16.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1130. 2019-03-27 01:21:16.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1131. 2019-03-27 01:21:16.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 3(Integer), null, null
  1132. 2019-03-27 01:21:16.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1133. 2019-03-27 01:21:16.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1134. 2019-03-27 01:21:16.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  1135. 2019-03-27 01:21:16.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1136. 2019-03-27 01:21:16.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1137. 2019-03-27 01:21:16.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  1138. 2019-03-27 01:21:16.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1139. 2019-03-27 01:21:16.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1140. 2019-03-27 01:21:16.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  1141. 2019-03-27 01:21:16.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1142. 2019-03-27 01:21:16.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1143. 2019-03-27 01:21:16.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  1144. 2019-03-27 01:21:16.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1145. 2019-03-27 01:21:16.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1146. 2019-03-27 01:21:16.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  1147. 2019-03-27 01:21:16.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1148. 2019-03-27 01:21:16.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1149. 2019-03-27 01:21:16.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -6(Integer), null, null
  1150. 2019-03-27 01:21:17.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1151. 2019-03-27 01:21:17.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1152. 2019-03-27 01:21:17.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  1153. 2019-03-27 01:21:17.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1154. 2019-03-27 01:21:17.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1155. 2019-03-27 01:21:17.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
  1156. 2019-03-27 01:21:17.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1157. 2019-03-27 01:21:17.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1158. 2019-03-27 01:21:17.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 1(Integer), null, null
  1159. 2019-03-27 01:21:17.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1160. 2019-03-27 01:21:17.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1161. 2019-03-27 01:21:17.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 2(Integer), null, null
  1162. 2019-03-27 01:21:17.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1163. 2019-03-27 01:21:17.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1164. 2019-03-27 01:21:17.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 3(Integer), null, null
  1165. 2019-03-27 01:21:17.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1166. 2019-03-27 01:21:17.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1167. 2019-03-27 01:21:17.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  1168. 2019-03-27 01:21:17.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1169. 2019-03-27 01:21:17.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1170. 2019-03-27 01:21:17.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  1171. 2019-03-27 01:21:17.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1172. 2019-03-27 01:21:17.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1173. 2019-03-27 01:21:17.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  1174. 2019-03-27 01:21:17.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1175. 2019-03-27 01:21:17.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1176. 2019-03-27 01:21:17.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  1177. 2019-03-27 01:21:17.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1178. 2019-03-27 01:21:17.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1179. 2019-03-27 01:21:17.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  1180. 2019-03-27 01:21:17.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1181. 2019-03-27 01:21:17.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1182. 2019-03-27 01:21:17.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -6(Integer), null, null
  1183. 2019-03-27 01:21:17.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1184. 2019-03-27 01:21:17.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  1185. 2019-03-27 01:21:17.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), null
  1186. 2019-03-27 01:21:17.693 |-INFO [http-nio-8089-exec-2] org.springframework.beans.factory.xml.XmlBeanDefinitionReader [317] -| Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
  1187. 2019-03-27 01:21:17.734 |-INFO [http-nio-8089-exec-2] org.springframework.jdbc.support.SQLErrorCodesFactory [127] -| SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase, Hana]
  1188. 2019-03-27 01:21:17.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1189. 2019-03-27 01:21:17.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
  1190. 2019-03-27 01:21:17.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  1191. 2019-03-27 01:21:17.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1192. 2019-03-27 01:21:17.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
  1193. 2019-03-27 01:21:17.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  1194. 2019-03-27 01:21:17.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  1195. 2019-03-27 01:21:17.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450105(String)
  1196. 2019-03-27 01:21:17.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  1197. 2019-03-27 01:21:17.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  1198. 2019-03-27 01:21:17.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
  1199. 2019-03-27 01:21:17.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1200. 2019-03-27 01:21:17.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
  1201. 2019-03-27 01:21:17.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1202. 2019-03-27 01:21:17.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1203. 2019-03-27 01:21:17.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
  1204. 2019-03-27 01:21:17.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1205. 2019-03-27 01:21:17.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1206. 2019-03-27 01:21:17.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
  1207. 2019-03-27 01:21:17.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1208. 2019-03-27 01:21:17.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1209. 2019-03-27 01:21:17.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  1210. 2019-03-27 01:21:17.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1211. 2019-03-27 01:21:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1212. 2019-03-27 01:21:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
  1213. 2019-03-27 01:21:17.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1214. 2019-03-27 01:21:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1215. 2019-03-27 01:21:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  1216. 2019-03-27 01:21:18.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1217. 2019-03-27 01:21:18.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1218. 2019-03-27 01:21:18.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  1219. 2019-03-27 01:21:18.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1220. 2019-03-27 01:21:18.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1221. 2019-03-27 01:21:18.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  1222. 2019-03-27 01:21:18.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1223. 2019-03-27 01:21:18.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1224. 2019-03-27 01:21:18.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  1225. 2019-03-27 01:21:18.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1226. 2019-03-27 01:21:18.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1227. 2019-03-27 01:21:18.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  1228. 2019-03-27 01:21:18.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1229. 2019-03-27 01:21:18.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1230. 2019-03-27 01:21:18.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  1231. 2019-03-27 01:21:18.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1232. 2019-03-27 01:21:18.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1233. 2019-03-27 01:21:18.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
  1234. 2019-03-27 01:21:18.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1235. 2019-03-27 01:21:18.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1236. 2019-03-27 01:21:18.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  1237. 2019-03-27 01:21:18.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1238. 2019-03-27 01:21:18.410 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1239. 2019-03-27 01:21:18.410 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  1240. 2019-03-27 01:21:18.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1241. 2019-03-27 01:21:18.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1242. 2019-03-27 01:21:18.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  1243. 2019-03-27 01:21:18.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1244. 2019-03-27 01:21:18.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1245. 2019-03-27 01:21:18.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  1246. 2019-03-27 01:21:18.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1247. 2019-03-27 01:21:18.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1248. 2019-03-27 01:21:18.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  1249. 2019-03-27 01:21:18.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1250. 2019-03-27 01:21:18.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1251. 2019-03-27 01:21:18.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  1252. 2019-03-27 01:21:18.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1253. 2019-03-27 01:21:18.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1254. 2019-03-27 01:21:18.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
  1255. 2019-03-27 01:21:18.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1256. 2019-03-27 01:21:18.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1257. 2019-03-27 01:21:18.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  1258. 2019-03-27 01:21:18.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1259. 2019-03-27 01:21:18.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1260. 2019-03-27 01:21:18.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  1261. 2019-03-27 01:21:18.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1262. 2019-03-27 01:21:18.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1263. 2019-03-27 01:21:18.821 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  1264. 2019-03-27 01:21:18.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1265. 2019-03-27 01:21:18.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1266. 2019-03-27 01:21:18.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  1267. 2019-03-27 01:21:18.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1268. 2019-03-27 01:21:18.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1269. 2019-03-27 01:21:18.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  1270. 2019-03-27 01:21:18.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1271. 2019-03-27 01:21:18.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  1272. 2019-03-27 01:21:18.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450104(String)
  1273. 2019-03-27 01:21:19.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  1274. 2019-03-27 01:21:19.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  1275. 2019-03-27 01:21:19.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 40
  1276. 2019-03-27 01:21:19.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1277. 2019-03-27 01:21:19.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
  1278. 2019-03-27 01:21:19.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1279. 2019-03-27 01:21:19.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1280. 2019-03-27 01:21:19.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
  1281. 2019-03-27 01:21:19.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1282. 2019-03-27 01:21:19.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1283. 2019-03-27 01:21:19.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
  1284. 2019-03-27 01:21:19.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1285. 2019-03-27 01:21:19.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1286. 2019-03-27 01:21:19.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
  1287. 2019-03-27 01:21:19.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1288. 2019-03-27 01:21:19.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1289. 2019-03-27 01:21:19.169 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
  1290. 2019-03-27 01:21:19.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1291. 2019-03-27 01:21:19.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1292. 2019-03-27 01:21:19.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
  1293. 2019-03-27 01:21:19.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1294. 2019-03-27 01:21:19.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1295. 2019-03-27 01:21:19.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
  1296. 2019-03-27 01:21:19.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1297. 2019-03-27 01:21:19.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1298. 2019-03-27 01:21:19.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
  1299. 2019-03-27 01:21:19.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1300. 2019-03-27 01:21:19.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1301. 2019-03-27 01:21:19.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
  1302. 2019-03-27 01:21:19.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1303. 2019-03-27 01:21:19.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1304. 2019-03-27 01:21:19.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
  1305. 2019-03-27 01:21:19.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1306. 2019-03-27 01:21:19.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1307. 2019-03-27 01:21:19.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
  1308. 2019-03-27 01:21:19.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1309. 2019-03-27 01:21:19.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1310. 2019-03-27 01:21:19.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
  1311. 2019-03-27 01:21:19.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1312. 2019-03-27 01:21:19.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1313. 2019-03-27 01:21:19.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
  1314. 2019-03-27 01:21:19.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1315. 2019-03-27 01:21:19.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1316. 2019-03-27 01:21:19.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
  1317. 2019-03-27 01:21:19.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1318. 2019-03-27 01:21:19.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1319. 2019-03-27 01:21:19.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
  1320. 2019-03-27 01:21:19.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1321. 2019-03-27 01:21:19.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1322. 2019-03-27 01:21:19.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
  1323. 2019-03-27 01:21:19.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1324. 2019-03-27 01:21:19.306 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1325. 2019-03-27 01:21:19.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
  1326. 2019-03-27 01:21:19.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1327. 2019-03-27 01:21:19.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1328. 2019-03-27 01:21:19.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
  1329. 2019-03-27 01:21:19.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1330. 2019-03-27 01:21:19.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1331. 2019-03-27 01:21:19.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
  1332. 2019-03-27 01:21:19.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1333. 2019-03-27 01:21:19.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1334. 2019-03-27 01:21:19.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
  1335. 2019-03-27 01:21:19.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1336. 2019-03-27 01:21:19.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1337. 2019-03-27 01:21:19.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
  1338. 2019-03-27 01:21:19.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1339. 2019-03-27 01:21:19.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1340. 2019-03-27 01:21:19.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
  1341. 2019-03-27 01:21:19.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1342. 2019-03-27 01:21:19.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1343. 2019-03-27 01:21:19.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:45.0(Timestamp)
  1344. 2019-03-27 01:21:19.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1345. 2019-03-27 01:21:19.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1346. 2019-03-27 01:21:19.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3221(Long), 3(Integer), 150(Long), 2019-03-25 22:49:45.0(Timestamp), 2019-03-26 07:53:45.0(Timestamp), -4(Integer), 518183(Long), 陈芳(String), 3203(Long)
  1347. 2019-03-27 01:21:19.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1348. 2019-03-27 01:21:19.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1349. 2019-03-27 01:21:19.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
  1350. 2019-03-27 01:21:19.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1351. 2019-03-27 01:21:19.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1352. 2019-03-27 01:21:19.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
  1353. 2019-03-27 01:21:19.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1354. 2019-03-27 01:21:19.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1355. 2019-03-27 01:21:19.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
  1356. 2019-03-27 01:21:19.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1357. 2019-03-27 01:21:19.466 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1358. 2019-03-27 01:21:19.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
  1359. 2019-03-27 01:21:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1360. 2019-03-27 01:21:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1361. 2019-03-27 01:21:19.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
  1362. 2019-03-27 01:21:19.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1363. 2019-03-27 01:21:19.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1364. 2019-03-27 01:21:19.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
  1365. 2019-03-27 01:21:19.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1366. 2019-03-27 01:21:19.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1367. 2019-03-27 01:21:19.502 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
  1368. 2019-03-27 01:21:19.511 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1369. 2019-03-27 01:21:19.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1370. 2019-03-27 01:21:19.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
  1371. 2019-03-27 01:21:19.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1372. 2019-03-27 01:21:19.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1373. 2019-03-27 01:21:19.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
  1374. 2019-03-27 01:21:19.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1375. 2019-03-27 01:21:19.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1376. 2019-03-27 01:21:19.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:53:59.0(Timestamp)
  1377. 2019-03-27 01:21:19.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1378. 2019-03-27 01:21:19.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1379. 2019-03-27 01:21:19.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3213(Long), 1(Integer), 150(Long), 2019-03-26 07:53:59.0(Timestamp), 2019-03-26 15:53:37.0(Timestamp), -4(Integer), 518188(Long), 李香(String), 3203(Long)
  1380. 2019-03-27 01:21:19.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1381. 2019-03-27 01:21:19.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1382. 2019-03-27 01:21:19.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
  1383. 2019-03-27 01:21:19.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1384. 2019-03-27 01:21:19.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1385. 2019-03-27 01:21:19.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
  1386. 2019-03-27 01:21:19.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1387. 2019-03-27 01:21:19.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1388. 2019-03-27 01:21:19.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
  1389. 2019-03-27 01:21:19.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1390. 2019-03-27 01:21:19.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1391. 2019-03-27 01:21:19.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
  1392. 2019-03-27 01:21:19.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1393. 2019-03-27 01:21:19.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1394. 2019-03-27 01:21:19.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
  1395. 2019-03-27 01:21:19.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1396. 2019-03-27 01:21:19.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1397. 2019-03-27 01:21:19.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
  1398. 2019-03-27 01:21:19.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1399. 2019-03-27 01:21:19.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1400. 2019-03-27 01:21:19.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
  1401. 2019-03-27 01:21:19.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1402. 2019-03-27 01:21:19.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1403. 2019-03-27 01:21:19.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
  1404. 2019-03-27 01:21:19.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1405. 2019-03-27 01:21:19.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1406. 2019-03-27 01:21:19.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
  1407. 2019-03-27 01:21:19.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1408. 2019-03-27 01:21:19.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1409. 2019-03-27 01:21:19.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:47.0(Timestamp)
  1410. 2019-03-27 01:21:19.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1411. 2019-03-27 01:21:19.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1412. 2019-03-27 01:21:19.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3225(Long), 2(Integer), 150(Long), 2019-03-26 15:53:47.0(Timestamp), 2019-03-26 22:51:19.0(Timestamp), -4(Integer), 518193(Long), 周雷(String), 3203(Long)
  1413. 2019-03-27 01:21:19.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1414. 2019-03-27 01:21:19.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1415. 2019-03-27 01:21:19.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
  1416. 2019-03-27 01:21:19.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1417. 2019-03-27 01:21:19.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1418. 2019-03-27 01:21:19.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
  1419. 2019-03-27 01:21:19.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1420. 2019-03-27 01:21:19.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1421. 2019-03-27 01:21:19.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
  1422. 2019-03-27 01:21:19.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1423. 2019-03-27 01:21:19.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1424. 2019-03-27 01:21:19.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
  1425. 2019-03-27 01:21:19.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1426. 2019-03-27 01:21:19.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1427. 2019-03-27 01:21:19.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
  1428. 2019-03-27 01:21:19.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1429. 2019-03-27 01:21:19.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1430. 2019-03-27 01:21:19.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
  1431. 2019-03-27 01:21:19.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1432. 2019-03-27 01:21:19.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1433. 2019-03-27 01:21:19.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
  1434. 2019-03-27 01:21:19.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1435. 2019-03-27 01:21:19.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1436. 2019-03-27 01:21:19.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
  1437. 2019-03-27 01:21:19.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1438. 2019-03-27 01:21:19.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1439. 2019-03-27 01:21:19.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1440. 2019-03-27 01:21:19.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1441. 2019-03-27 01:21:19.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1442. 2019-03-27 01:21:19.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:53.0(Timestamp)
  1443. 2019-03-27 01:21:19.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1444. 2019-03-27 01:21:19.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1445. 2019-03-27 01:21:19.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
  1446. 2019-03-27 01:21:19.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1447. 2019-03-27 01:21:19.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1448. 2019-03-27 01:21:19.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1449. 2019-03-27 01:21:19.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1450. 2019-03-27 01:21:19.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1451. 2019-03-27 01:21:19.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
  1452. 2019-03-27 01:21:19.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1453. 2019-03-27 01:21:19.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1454. 2019-03-27 01:21:19.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1455. 2019-03-27 01:21:19.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1456. 2019-03-27 01:21:19.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1457. 2019-03-27 01:21:19.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
  1458. 2019-03-27 01:21:19.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1459. 2019-03-27 01:21:19.925 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1460. 2019-03-27 01:21:19.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1461. 2019-03-27 01:21:19.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1462. 2019-03-27 01:21:19.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1463. 2019-03-27 01:21:19.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
  1464. 2019-03-27 01:21:19.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1465. 2019-03-27 01:21:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1466. 2019-03-27 01:21:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1467. 2019-03-27 01:21:19.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1468. 2019-03-27 01:21:19.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1469. 2019-03-27 01:21:19.958 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1470. 2019-03-27 01:21:19.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1471. 2019-03-27 01:21:19.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1472. 2019-03-27 01:21:19.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:12.0(Timestamp)
  1473. 2019-03-27 01:21:19.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1474. 2019-03-27 01:21:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1475. 2019-03-27 01:21:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1476. 2019-03-27 01:21:19.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1477. 2019-03-27 01:21:19.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1478. 2019-03-27 01:21:19.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1479. 2019-03-27 01:21:19.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1480. 2019-03-27 01:21:19.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1481. 2019-03-27 01:21:19.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
  1482. 2019-03-27 01:21:20.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1483. 2019-03-27 01:21:20.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1484. 2019-03-27 01:21:20.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1485. 2019-03-27 01:21:20.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1486. 2019-03-27 01:21:20.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1487. 2019-03-27 01:21:20.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
  1488. 2019-03-27 01:21:20.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1489. 2019-03-27 01:21:20.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1490. 2019-03-27 01:21:20.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1491. 2019-03-27 01:21:20.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1492. 2019-03-27 01:21:20.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1493. 2019-03-27 01:21:20.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
  1494. 2019-03-27 01:21:20.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1495. 2019-03-27 01:21:20.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1496. 2019-03-27 01:21:20.046 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1497. 2019-03-27 01:21:20.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1498. 2019-03-27 01:21:20.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1499. 2019-03-27 01:21:20.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1500. 2019-03-27 01:21:20.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1501. 2019-03-27 01:21:20.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1502. 2019-03-27 01:21:20.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:39.0(Timestamp)
  1503. 2019-03-27 01:21:20.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1504. 2019-03-27 01:21:20.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1505. 2019-03-27 01:21:20.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1506. 2019-03-27 01:21:20.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1507. 2019-03-27 01:21:20.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1508. 2019-03-27 01:21:20.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1509. 2019-03-27 01:21:20.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1510. 2019-03-27 01:21:20.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1511. 2019-03-27 01:21:20.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
  1512. 2019-03-27 01:21:20.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1513. 2019-03-27 01:21:20.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1514. 2019-03-27 01:21:20.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1515. 2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1516. 2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1517. 2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
  1518. 2019-03-27 01:21:20.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1519. 2019-03-27 01:21:20.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1520. 2019-03-27 01:21:20.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
  1521. 2019-03-27 01:21:20.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1522. 2019-03-27 01:21:20.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1523. 2019-03-27 01:21:20.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
  1524. 2019-03-27 01:21:20.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1525. 2019-03-27 01:21:20.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1526. 2019-03-27 01:21:20.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1527. 2019-03-27 01:21:20.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1528. 2019-03-27 01:21:20.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1529. 2019-03-27 01:21:20.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
  1530. 2019-03-27 01:21:20.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1531. 2019-03-27 01:21:20.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1532. 2019-03-27 01:21:20.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:07.0(Timestamp)
  1533. 2019-03-27 01:21:20.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1534. 2019-03-27 01:21:20.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1535. 2019-03-27 01:21:20.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
  1536. 2019-03-27 01:21:20.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1537. 2019-03-27 01:21:20.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1538. 2019-03-27 01:21:20.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
  1539. 2019-03-27 01:21:20.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1540. 2019-03-27 01:21:20.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1541. 2019-03-27 01:21:20.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
  1542. 2019-03-27 01:21:20.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1543. 2019-03-27 01:21:20.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1544. 2019-03-27 01:21:20.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
  1545. 2019-03-27 01:21:20.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1546. 2019-03-27 01:21:20.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1547. 2019-03-27 01:21:20.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
  1548. 2019-03-27 01:21:20.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1549. 2019-03-27 01:21:20.240 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1550. 2019-03-27 01:21:20.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
  1551. 2019-03-27 01:21:20.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1552. 2019-03-27 01:21:20.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1553. 2019-03-27 01:21:20.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
  1554. 2019-03-27 01:21:20.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1555. 2019-03-27 01:21:20.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1556. 2019-03-27 01:21:20.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
  1557. 2019-03-27 01:21:20.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1558. 2019-03-27 01:21:20.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1559. 2019-03-27 01:21:20.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
  1560. 2019-03-27 01:21:20.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1561. 2019-03-27 01:21:20.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1562. 2019-03-27 01:21:20.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:03.0(Timestamp)
  1563. 2019-03-27 01:21:20.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1564. 2019-03-27 01:21:20.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1565. 2019-03-27 01:21:20.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3226(Long), 2(Integer), 150(Long), 2019-03-26 15:53:03.0(Timestamp), 2019-03-26 22:51:03.0(Timestamp), -5(Integer), 518194(Long), 王路泉(String), 3203(Long)
  1566. 2019-03-27 01:21:20.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1567. 2019-03-27 01:21:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1568. 2019-03-27 01:21:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
  1569. 2019-03-27 01:21:20.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1570. 2019-03-27 01:21:20.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1571. 2019-03-27 01:21:20.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
  1572. 2019-03-27 01:21:20.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1573. 2019-03-27 01:21:20.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1574. 2019-03-27 01:21:20.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
  1575. 2019-03-27 01:21:20.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1576. 2019-03-27 01:21:20.394 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1577. 2019-03-27 01:21:20.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
  1578. 2019-03-27 01:21:20.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1579. 2019-03-27 01:21:20.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1580. 2019-03-27 01:21:20.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
  1581. 2019-03-27 01:21:20.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1582. 2019-03-27 01:21:20.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1583. 2019-03-27 01:21:20.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
  1584. 2019-03-27 01:21:20.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1585. 2019-03-27 01:21:20.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1586. 2019-03-27 01:21:20.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
  1587. 2019-03-27 01:21:20.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1588. 2019-03-27 01:21:20.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1589. 2019-03-27 01:21:20.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
  1590. 2019-03-27 01:21:20.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1591. 2019-03-27 01:21:20.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1592. 2019-03-27 01:21:20.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
  1593. 2019-03-27 01:21:20.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1594. 2019-03-27 01:21:20.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1595. 2019-03-27 01:21:20.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  1596. 2019-03-27 01:21:20.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1597. 2019-03-27 01:21:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1598. 2019-03-27 01:21:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
  1599. 2019-03-27 01:21:20.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1600. 2019-03-27 01:21:20.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1601. 2019-03-27 01:21:20.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  1602. 2019-03-27 01:21:20.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1603. 2019-03-27 01:21:20.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1604. 2019-03-27 01:21:20.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  1605. 2019-03-27 01:21:20.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1606. 2019-03-27 01:21:20.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1607. 2019-03-27 01:21:20.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  1608. 2019-03-27 01:21:20.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1609. 2019-03-27 01:21:20.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1610. 2019-03-27 01:21:20.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  1611. 2019-03-27 01:21:20.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1612. 2019-03-27 01:21:20.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1613. 2019-03-27 01:21:20.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  1614. 2019-03-27 01:21:20.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1615. 2019-03-27 01:21:20.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1616. 2019-03-27 01:21:20.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  1617. 2019-03-27 01:21:20.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1618. 2019-03-27 01:21:20.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1619. 2019-03-27 01:21:20.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
  1620. 2019-03-27 01:21:20.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1621. 2019-03-27 01:21:20.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1622. 2019-03-27 01:21:20.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  1623. 2019-03-27 01:21:21.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1624. 2019-03-27 01:21:21.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1625. 2019-03-27 01:21:21.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  1626. 2019-03-27 01:21:21.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1627. 2019-03-27 01:21:21.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1628. 2019-03-27 01:21:21.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  1629. 2019-03-27 01:21:21.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1630. 2019-03-27 01:21:21.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1631. 2019-03-27 01:21:21.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  1632. 2019-03-27 01:21:21.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1633. 2019-03-27 01:21:21.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1634. 2019-03-27 01:21:21.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  1635. 2019-03-27 01:21:21.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1636. 2019-03-27 01:21:21.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1637. 2019-03-27 01:21:21.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  1638. 2019-03-27 01:21:21.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1639. 2019-03-27 01:21:21.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1640. 2019-03-27 01:21:21.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
  1641. 2019-03-27 01:21:21.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1642. 2019-03-27 01:21:21.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1643. 2019-03-27 01:21:21.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  1644. 2019-03-27 01:21:21.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1645. 2019-03-27 01:21:21.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1646. 2019-03-27 01:21:21.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  1647. 2019-03-27 01:21:21.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1648. 2019-03-27 01:21:21.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1649. 2019-03-27 01:21:21.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  1650. 2019-03-27 01:21:21.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1651. 2019-03-27 01:21:21.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1652. 2019-03-27 01:21:21.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  1653. 2019-03-27 01:21:21.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1654. 2019-03-27 01:21:21.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1655. 2019-03-27 01:21:21.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  1656. 2019-03-27 01:21:21.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1657. 2019-03-27 01:21:21.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  1658. 2019-03-27 01:21:21.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450101(String)
  1659. 2019-03-27 01:21:21.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  1660. 2019-03-27 01:21:21.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  1661. 2019-03-27 01:21:21.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
  1662. 2019-03-27 01:21:21.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1663. 2019-03-27 01:21:21.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
  1664. 2019-03-27 01:21:21.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1665. 2019-03-27 01:21:21.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1666. 2019-03-27 01:21:21.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
  1667. 2019-03-27 01:21:21.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1668. 2019-03-27 01:21:21.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1669. 2019-03-27 01:21:21.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:19.0(Timestamp)
  1670. 2019-03-27 01:21:21.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1671. 2019-03-27 01:21:21.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1672. 2019-03-27 01:21:21.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3752(Long), 3(Integer), 154(Long), 2019-03-25 22:55:19.0(Timestamp), 2019-03-26 07:54:18.0(Timestamp), -2(Integer), 518196(Long), 秦军(String), 3743(Long)
  1673. 2019-03-27 01:21:21.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1674. 2019-03-27 01:21:21.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1675. 2019-03-27 01:21:21.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
  1676. 2019-03-27 01:21:21.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1677. 2019-03-27 01:21:21.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1678. 2019-03-27 01:21:21.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
  1679. 2019-03-27 01:21:21.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1680. 2019-03-27 01:21:21.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1681. 2019-03-27 01:21:21.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
  1682. 2019-03-27 01:21:21.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1683. 2019-03-27 01:21:21.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1684. 2019-03-27 01:21:21.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
  1685. 2019-03-27 01:21:21.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1686. 2019-03-27 01:21:21.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1687. 2019-03-27 01:21:21.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
  1688. 2019-03-27 01:21:21.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1689. 2019-03-27 01:21:21.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1690. 2019-03-27 01:21:21.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
  1691. 2019-03-27 01:21:21.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1692. 2019-03-27 01:21:21.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1693. 2019-03-27 01:21:21.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
  1694. 2019-03-27 01:21:21.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1695. 2019-03-27 01:21:21.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1696. 2019-03-27 01:21:21.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
  1697. 2019-03-27 01:21:21.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1698. 2019-03-27 01:21:21.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1699. 2019-03-27 01:21:21.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
  1700. 2019-03-27 01:21:21.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1701. 2019-03-27 01:21:21.928 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1702. 2019-03-27 01:21:21.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:31.0(Timestamp)
  1703. 2019-03-27 01:21:21.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1704. 2019-03-27 01:21:21.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1705. 2019-03-27 01:21:21.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3751(Long), 1(Integer), 154(Long), 2019-03-26 07:54:31.0(Timestamp), 2019-03-26 15:55:26.0(Timestamp), -2(Integer), 518201(Long), 戴龙(String), 3743(Long)
  1706. 2019-03-27 01:21:21.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1707. 2019-03-27 01:21:21.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1708. 2019-03-27 01:21:21.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
  1709. 2019-03-27 01:21:22.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1710. 2019-03-27 01:21:22.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1711. 2019-03-27 01:21:22.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
  1712. 2019-03-27 01:21:22.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1713. 2019-03-27 01:21:22.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1714. 2019-03-27 01:21:22.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
  1715. 2019-03-27 01:21:22.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1716. 2019-03-27 01:21:22.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1717. 2019-03-27 01:21:22.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
  1718. 2019-03-27 01:21:22.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1719. 2019-03-27 01:21:22.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1720. 2019-03-27 01:21:22.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
  1721. 2019-03-27 01:21:22.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1722. 2019-03-27 01:21:22.071 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1723. 2019-03-27 01:21:22.071 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
  1724. 2019-03-27 01:21:22.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1725. 2019-03-27 01:21:22.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1726. 2019-03-27 01:21:22.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
  1727. 2019-03-27 01:21:22.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1728. 2019-03-27 01:21:22.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1729. 2019-03-27 01:21:22.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
  1730. 2019-03-27 01:21:22.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1731. 2019-03-27 01:21:22.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1732. 2019-03-27 01:21:22.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
  1733. 2019-03-27 01:21:22.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1734. 2019-03-27 01:21:22.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1735. 2019-03-27 01:21:22.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:37.0(Timestamp)
  1736. 2019-03-27 01:21:22.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1737. 2019-03-27 01:21:22.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1738. 2019-03-27 01:21:22.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3754(Long), 2(Integer), 154(Long), 2019-03-26 15:55:37.0(Timestamp), 2019-03-26 22:54:03.0(Timestamp), -2(Integer), 518206(Long), 徐志新(String), 3743(Long)
  1739. 2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1740. 2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1741. 2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
  1742. 2019-03-27 01:21:22.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1743. 2019-03-27 01:21:22.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1744. 2019-03-27 01:21:22.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
  1745. 2019-03-27 01:21:22.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1746. 2019-03-27 01:21:22.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1747. 2019-03-27 01:21:22.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
  1748. 2019-03-27 01:21:22.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1749. 2019-03-27 01:21:22.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1750. 2019-03-27 01:21:22.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
  1751. 2019-03-27 01:21:22.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1752. 2019-03-27 01:21:22.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1753. 2019-03-27 01:21:22.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
  1754. 2019-03-27 01:21:22.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1755. 2019-03-27 01:21:22.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1756. 2019-03-27 01:21:22.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
  1757. 2019-03-27 01:21:22.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1758. 2019-03-27 01:21:22.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1759. 2019-03-27 01:21:22.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
  1760. 2019-03-27 01:21:22.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1761. 2019-03-27 01:21:22.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1762. 2019-03-27 01:21:22.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
  1763. 2019-03-27 01:21:22.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1764. 2019-03-27 01:21:22.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1765. 2019-03-27 01:21:22.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
  1766. 2019-03-27 01:21:22.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1767. 2019-03-27 01:21:22.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1768. 2019-03-27 01:21:22.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:37.0(Timestamp)
  1769. 2019-03-27 01:21:22.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1770. 2019-03-27 01:21:22.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1771. 2019-03-27 01:21:22.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3760(Long), 3(Integer), 154(Long), 2019-03-25 22:54:37.0(Timestamp), 2019-03-26 07:54:33.0(Timestamp), -3(Integer), 518197(Long), 倪青山(String), 3743(Long)
  1772. 2019-03-27 01:21:22.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1773. 2019-03-27 01:21:22.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1774. 2019-03-27 01:21:22.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
  1775. 2019-03-27 01:21:22.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1776. 2019-03-27 01:21:22.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1777. 2019-03-27 01:21:22.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
  1778. 2019-03-27 01:21:22.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1779. 2019-03-27 01:21:22.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1780. 2019-03-27 01:21:22.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
  1781. 2019-03-27 01:21:22.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1782. 2019-03-27 01:21:22.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1783. 2019-03-27 01:21:22.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
  1784. 2019-03-27 01:21:22.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1785. 2019-03-27 01:21:22.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1786. 2019-03-27 01:21:22.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
  1787. 2019-03-27 01:21:22.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1788. 2019-03-27 01:21:22.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1789. 2019-03-27 01:21:22.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
  1790. 2019-03-27 01:21:22.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1791. 2019-03-27 01:21:22.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1792. 2019-03-27 01:21:22.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
  1793. 2019-03-27 01:21:22.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1794. 2019-03-27 01:21:22.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1795. 2019-03-27 01:21:22.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
  1796. 2019-03-27 01:21:22.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1797. 2019-03-27 01:21:22.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1798. 2019-03-27 01:21:22.448 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
  1799. 2019-03-27 01:21:22.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1800. 2019-03-27 01:21:22.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1801. 2019-03-27 01:21:22.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:41.0(Timestamp)
  1802. 2019-03-27 01:21:22.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1803. 2019-03-27 01:21:22.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1804. 2019-03-27 01:21:22.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3761(Long), 1(Integer), 154(Long), 2019-03-26 07:54:41.0(Timestamp), 2019-03-26 15:54:24.0(Timestamp), -3(Integer), 518202(Long), 何流(String), 3743(Long)
  1805. 2019-03-27 01:21:22.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1806. 2019-03-27 01:21:22.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1807. 2019-03-27 01:21:22.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
  1808. 2019-03-27 01:21:22.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1809. 2019-03-27 01:21:22.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1810. 2019-03-27 01:21:22.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
  1811. 2019-03-27 01:21:22.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1812. 2019-03-27 01:21:22.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1813. 2019-03-27 01:21:22.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
  1814. 2019-03-27 01:21:22.568 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1815. 2019-03-27 01:21:22.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1816. 2019-03-27 01:21:22.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
  1817. 2019-03-27 01:21:22.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1818. 2019-03-27 01:21:22.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1819. 2019-03-27 01:21:22.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
  1820. 2019-03-27 01:21:22.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1821. 2019-03-27 01:21:22.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1822. 2019-03-27 01:21:22.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
  1823. 2019-03-27 01:21:22.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1824. 2019-03-27 01:21:22.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1825. 2019-03-27 01:21:22.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
  1826. 2019-03-27 01:21:22.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1827. 2019-03-27 01:21:22.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1828. 2019-03-27 01:21:22.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
  1829. 2019-03-27 01:21:22.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1830. 2019-03-27 01:21:22.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1831. 2019-03-27 01:21:22.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
  1832. 2019-03-27 01:21:22.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1833. 2019-03-27 01:21:22.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1834. 2019-03-27 01:21:22.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
  1835. 2019-03-27 01:21:22.667 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1836. 2019-03-27 01:21:22.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1837. 2019-03-27 01:21:22.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
  1838. 2019-03-27 01:21:22.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1839. 2019-03-27 01:21:22.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1840. 2019-03-27 01:21:22.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
  1841. 2019-03-27 01:21:22.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1842. 2019-03-27 01:21:22.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1843. 2019-03-27 01:21:22.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
  1844. 2019-03-27 01:21:22.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1845. 2019-03-27 01:21:22.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1846. 2019-03-27 01:21:22.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
  1847. 2019-03-27 01:21:22.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1848. 2019-03-27 01:21:22.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1849. 2019-03-27 01:21:22.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
  1850. 2019-03-27 01:21:22.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1851. 2019-03-27 01:21:22.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1852. 2019-03-27 01:21:22.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
  1853. 2019-03-27 01:21:22.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1854. 2019-03-27 01:21:22.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1855. 2019-03-27 01:21:22.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
  1856. 2019-03-27 01:21:22.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1857. 2019-03-27 01:21:22.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1858. 2019-03-27 01:21:22.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
  1859. 2019-03-27 01:21:22.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1860. 2019-03-27 01:21:22.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1861. 2019-03-27 01:21:22.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
  1862. 2019-03-27 01:21:22.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1863. 2019-03-27 01:21:22.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1864. 2019-03-27 01:21:22.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
  1865. 2019-03-27 01:21:22.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1866. 2019-03-27 01:21:22.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1867. 2019-03-27 01:21:22.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3759(Long), 3(Integer), 154(Long), 2019-03-25 22:54:13.0(Timestamp), 2019-03-26 07:53:42.0(Timestamp), -4(Integer), 518198(Long), 胡驿乔(String), 3743(Long)
  1868. 2019-03-27 01:21:22.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1869. 2019-03-27 01:21:22.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1870. 2019-03-27 01:21:22.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
  1871. 2019-03-27 01:21:22.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1872. 2019-03-27 01:21:22.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1873. 2019-03-27 01:21:22.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
  1874. 2019-03-27 01:21:22.850 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1875. 2019-03-27 01:21:22.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1876. 2019-03-27 01:21:22.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
  1877. 2019-03-27 01:21:22.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1878. 2019-03-27 01:21:22.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1879. 2019-03-27 01:21:22.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
  1880. 2019-03-27 01:21:22.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1881. 2019-03-27 01:21:22.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1882. 2019-03-27 01:21:22.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
  1883. 2019-03-27 01:21:22.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1884. 2019-03-27 01:21:22.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1885. 2019-03-27 01:21:22.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
  1886. 2019-03-27 01:21:22.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1887. 2019-03-27 01:21:22.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1888. 2019-03-27 01:21:22.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
  1889. 2019-03-27 01:21:22.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1890. 2019-03-27 01:21:22.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1891. 2019-03-27 01:21:22.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
  1892. 2019-03-27 01:21:22.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1893. 2019-03-27 01:21:22.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1894. 2019-03-27 01:21:22.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
  1895. 2019-03-27 01:21:22.922 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1896. 2019-03-27 01:21:22.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1897. 2019-03-27 01:21:22.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:03.0(Timestamp)
  1898. 2019-03-27 01:21:22.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1899. 2019-03-27 01:21:22.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1900. 2019-03-27 01:21:22.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3756(Long), 1(Integer), 154(Long), 2019-03-26 07:54:03.0(Timestamp), 2019-03-26 15:54:57.0(Timestamp), -4(Integer), 518203(Long), 李荣华(String), 3743(Long)
  1901. 2019-03-27 01:21:22.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1902. 2019-03-27 01:21:22.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1903. 2019-03-27 01:21:22.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
  1904. 2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1905. 2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1906. 2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
  1907. 2019-03-27 01:21:23.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1908. 2019-03-27 01:21:23.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1909. 2019-03-27 01:21:23.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
  1910. 2019-03-27 01:21:23.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1911. 2019-03-27 01:21:23.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1912. 2019-03-27 01:21:23.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
  1913. 2019-03-27 01:21:23.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1914. 2019-03-27 01:21:23.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1915. 2019-03-27 01:21:23.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
  1916. 2019-03-27 01:21:23.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1917. 2019-03-27 01:21:23.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1918. 2019-03-27 01:21:23.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
  1919. 2019-03-27 01:21:23.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1920. 2019-03-27 01:21:23.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1921. 2019-03-27 01:21:23.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
  1922. 2019-03-27 01:21:23.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1923. 2019-03-27 01:21:23.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1924. 2019-03-27 01:21:23.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
  1925. 2019-03-27 01:21:23.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1926. 2019-03-27 01:21:23.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1927. 2019-03-27 01:21:23.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
  1928. 2019-03-27 01:21:23.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1929. 2019-03-27 01:21:23.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1930. 2019-03-27 01:21:23.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
  1931. 2019-03-27 01:21:23.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  1932. 2019-03-27 01:21:23.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  1933. 2019-03-27 01:21:23.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3765(Long), 2(Integer), 154(Long), 2019-03-26 15:55:31.0(Timestamp), 2019-03-26 22:53:42.0(Timestamp), -4(Integer), 518208(Long), 侍慧(String), 3743(Long)
  1934. 2019-03-27 01:21:23.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  1935. 2019-03-27 01:21:23.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1936. 2019-03-27 01:21:23.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
  1937. 2019-03-27 01:21:23.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1938. 2019-03-27 01:21:23.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1939. 2019-03-27 01:21:23.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
  1940. 2019-03-27 01:21:23.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1941. 2019-03-27 01:21:23.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1942. 2019-03-27 01:21:23.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
  1943. 2019-03-27 01:21:23.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1944. 2019-03-27 01:21:23.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1945. 2019-03-27 01:21:23.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
  1946. 2019-03-27 01:21:23.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1947. 2019-03-27 01:21:23.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1948. 2019-03-27 01:21:23.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
  1949. 2019-03-27 01:21:23.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1950. 2019-03-27 01:21:23.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  1951. 2019-03-27 01:21:23.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
  1952. 2019-03-27 01:21:23.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  1953. 2019-03-27 01:21:23.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  1954. 2019-03-27 01:21:23.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
  1955. 2019-03-27 01:21:23.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  1956. 2019-03-27 01:21:23.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1957. 2019-03-27 01:21:23.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
  1958. 2019-03-27 01:21:23.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1959. 2019-03-27 01:21:23.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  1960. 2019-03-27 01:21:23.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
  1961. 2019-03-27 01:21:23.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  1962. 2019-03-27 01:21:23.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1963. 2019-03-27 01:21:23.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  1964. 2019-03-27 01:21:23.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1965. 2019-03-27 01:21:23.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1966. 2019-03-27 01:21:23.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
  1967. 2019-03-27 01:21:23.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1968. 2019-03-27 01:21:23.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1969. 2019-03-27 01:21:23.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  1970. 2019-03-27 01:21:23.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1971. 2019-03-27 01:21:23.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1972. 2019-03-27 01:21:23.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  1973. 2019-03-27 01:21:23.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1974. 2019-03-27 01:21:23.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1975. 2019-03-27 01:21:23.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  1976. 2019-03-27 01:21:23.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1977. 2019-03-27 01:21:23.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1978. 2019-03-27 01:21:23.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  1979. 2019-03-27 01:21:23.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1980. 2019-03-27 01:21:23.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1981. 2019-03-27 01:21:23.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  1982. 2019-03-27 01:21:23.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1983. 2019-03-27 01:21:23.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  1984. 2019-03-27 01:21:23.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  1985. 2019-03-27 01:21:23.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  1986. 2019-03-27 01:21:23.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  1987. 2019-03-27 01:21:23.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
  1988. 2019-03-27 01:21:23.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  1989. 2019-03-27 01:21:23.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1990. 2019-03-27 01:21:23.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  1991. 2019-03-27 01:21:23.729 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1992. 2019-03-27 01:21:23.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1993. 2019-03-27 01:21:23.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  1994. 2019-03-27 01:21:23.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1995. 2019-03-27 01:21:23.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1996. 2019-03-27 01:21:23.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  1997. 2019-03-27 01:21:23.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  1998. 2019-03-27 01:21:23.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  1999. 2019-03-27 01:21:23.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  2000. 2019-03-27 01:21:23.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2001. 2019-03-27 01:21:23.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2002. 2019-03-27 01:21:23.911 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  2003. 2019-03-27 01:21:23.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2004. 2019-03-27 01:21:23.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2005. 2019-03-27 01:21:23.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  2006. 2019-03-27 01:21:24.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2007. 2019-03-27 01:21:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2008. 2019-03-27 01:21:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
  2009. 2019-03-27 01:21:24.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2010. 2019-03-27 01:21:24.038 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2011. 2019-03-27 01:21:24.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  2012. 2019-03-27 01:21:24.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2013. 2019-03-27 01:21:24.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2014. 2019-03-27 01:21:24.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  2015. 2019-03-27 01:21:24.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2016. 2019-03-27 01:21:24.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2017. 2019-03-27 01:21:24.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  2018. 2019-03-27 01:21:24.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2019. 2019-03-27 01:21:24.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2020. 2019-03-27 01:21:24.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  2021. 2019-03-27 01:21:24.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2022. 2019-03-27 01:21:24.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2023. 2019-03-27 01:21:24.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  2024. 2019-03-27 01:21:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2025. 2019-03-27 01:21:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  2026. 2019-03-27 01:21:24.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450102(String)
  2027. 2019-03-27 01:21:24.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  2028. 2019-03-27 01:21:24.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  2029. 2019-03-27 01:21:24.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 41
  2030. 2019-03-27 01:21:24.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2031. 2019-03-27 01:21:24.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
  2032. 2019-03-27 01:21:24.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2033. 2019-03-27 01:21:24.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2034. 2019-03-27 01:21:24.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
  2035. 2019-03-27 01:21:24.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2036. 2019-03-27 01:21:24.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2037. 2019-03-27 01:21:24.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:29.0(Timestamp)
  2038. 2019-03-27 01:21:24.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2039. 2019-03-27 01:21:24.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2040. 2019-03-27 01:21:24.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 116(Long), 3719(Long), 1(Integer), 155(Long), 2019-03-26 07:56:29.0(Timestamp), 2019-03-26 15:56:14.0(Timestamp), -5(Integer), 518219(Long), 杨玉龙(String), 3701(Long)
  2041. 2019-03-27 01:21:24.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2042. 2019-03-27 01:21:24.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2043. 2019-03-27 01:21:24.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
  2044. 2019-03-27 01:21:24.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2045. 2019-03-27 01:21:24.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2046. 2019-03-27 01:21:24.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
  2047. 2019-03-27 01:21:24.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2048. 2019-03-27 01:21:24.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2049. 2019-03-27 01:21:24.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
  2050. 2019-03-27 01:21:24.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2051. 2019-03-27 01:21:24.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2052. 2019-03-27 01:21:24.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
  2053. 2019-03-27 01:21:24.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2054. 2019-03-27 01:21:24.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2055. 2019-03-27 01:21:24.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
  2056. 2019-03-27 01:21:24.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2057. 2019-03-27 01:21:24.595 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2058. 2019-03-27 01:21:24.595 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
  2059. 2019-03-27 01:21:24.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2060. 2019-03-27 01:21:24.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2061. 2019-03-27 01:21:24.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
  2062. 2019-03-27 01:21:24.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2063. 2019-03-27 01:21:24.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2064. 2019-03-27 01:21:24.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
  2065. 2019-03-27 01:21:24.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2066. 2019-03-27 01:21:24.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2067. 2019-03-27 01:21:24.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
  2068. 2019-03-27 01:21:24.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2069. 2019-03-27 01:21:24.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2070. 2019-03-27 01:21:24.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
  2071. 2019-03-27 01:21:24.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2072. 2019-03-27 01:21:24.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2073. 2019-03-27 01:21:24.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 116(Long), 3720(Long), 2(Integer), 155(Long), 2019-03-26 15:58:04.0(Timestamp), 2019-03-26 17:55:20.0(Timestamp), -5(Integer), 518224(Long), 万爱平(String), 3701(Long)
  2074. 2019-03-27 01:21:24.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2075. 2019-03-27 01:21:24.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2076. 2019-03-27 01:21:24.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
  2077. 2019-03-27 01:21:24.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2078. 2019-03-27 01:21:24.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2079. 2019-03-27 01:21:24.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
  2080. 2019-03-27 01:21:24.714 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2081. 2019-03-27 01:21:24.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2082. 2019-03-27 01:21:24.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
  2083. 2019-03-27 01:21:24.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2084. 2019-03-27 01:21:24.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2085. 2019-03-27 01:21:24.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
  2086. 2019-03-27 01:21:24.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2087. 2019-03-27 01:21:24.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2088. 2019-03-27 01:21:24.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
  2089. 2019-03-27 01:21:24.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2090. 2019-03-27 01:21:24.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2091. 2019-03-27 01:21:24.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
  2092. 2019-03-27 01:21:24.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2093. 2019-03-27 01:21:24.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2094. 2019-03-27 01:21:24.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
  2095. 2019-03-27 01:21:24.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2096. 2019-03-27 01:21:24.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2097. 2019-03-27 01:21:24.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
  2098. 2019-03-27 01:21:24.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2099. 2019-03-27 01:21:24.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2100. 2019-03-27 01:21:24.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
  2101. 2019-03-27 01:21:24.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2102. 2019-03-27 01:21:24.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2103. 2019-03-27 01:21:24.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
  2104. 2019-03-27 01:21:24.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2105. 2019-03-27 01:21:24.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2106. 2019-03-27 01:21:24.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
  2107. 2019-03-27 01:21:24.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2108. 2019-03-27 01:21:24.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2109. 2019-03-27 01:21:24.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
  2110. 2019-03-27 01:21:24.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2111. 2019-03-27 01:21:24.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2112. 2019-03-27 01:21:24.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
  2113. 2019-03-27 01:21:24.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2114. 2019-03-27 01:21:24.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2115. 2019-03-27 01:21:24.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
  2116. 2019-03-27 01:21:24.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2117. 2019-03-27 01:21:24.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2118. 2019-03-27 01:21:24.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
  2119. 2019-03-27 01:21:24.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2120. 2019-03-27 01:21:24.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2121. 2019-03-27 01:21:24.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
  2122. 2019-03-27 01:21:24.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2123. 2019-03-27 01:21:24.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2124. 2019-03-27 01:21:24.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
  2125. 2019-03-27 01:21:24.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2126. 2019-03-27 01:21:24.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2127. 2019-03-27 01:21:24.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102048(String)
  2128. 2019-03-27 01:21:24.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2129. 2019-03-27 01:21:24.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2130. 2019-03-27 01:21:24.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -6(Integer)
  2131. 2019-03-27 01:21:24.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  2132. 2019-03-27 01:21:24.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2133. 2019-03-27 01:21:24.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
  2134. 2019-03-27 01:21:24.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2135. 2019-03-27 01:21:24.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2136. 2019-03-27 01:21:24.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
  2137. 2019-03-27 01:21:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2138. 2019-03-27 01:21:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2139. 2019-03-27 01:21:24.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  2140. 2019-03-27 01:21:24.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2141. 2019-03-27 01:21:24.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2142. 2019-03-27 01:21:24.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
  2143. 2019-03-27 01:21:24.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2144. 2019-03-27 01:21:24.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2145. 2019-03-27 01:21:24.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  2146. 2019-03-27 01:21:25.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2147. 2019-03-27 01:21:25.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2148. 2019-03-27 01:21:25.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  2149. 2019-03-27 01:21:25.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2150. 2019-03-27 01:21:25.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2151. 2019-03-27 01:21:25.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  2152. 2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2153. 2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2154. 2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  2155. 2019-03-27 01:21:25.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2156. 2019-03-27 01:21:25.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2157. 2019-03-27 01:21:25.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  2158. 2019-03-27 01:21:25.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2159. 2019-03-27 01:21:25.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2160. 2019-03-27 01:21:25.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  2161. 2019-03-27 01:21:25.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2162. 2019-03-27 01:21:25.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2163. 2019-03-27 01:21:25.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
  2164. 2019-03-27 01:21:25.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2165. 2019-03-27 01:21:25.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2166. 2019-03-27 01:21:25.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  2167. 2019-03-27 01:21:25.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2168. 2019-03-27 01:21:25.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2169. 2019-03-27 01:21:25.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  2170. 2019-03-27 01:21:25.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2171. 2019-03-27 01:21:25.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2172. 2019-03-27 01:21:25.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  2173. 2019-03-27 01:21:25.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2174. 2019-03-27 01:21:25.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2175. 2019-03-27 01:21:25.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  2176. 2019-03-27 01:21:25.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2177. 2019-03-27 01:21:25.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2178. 2019-03-27 01:21:25.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  2179. 2019-03-27 01:21:25.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2180. 2019-03-27 01:21:25.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2181. 2019-03-27 01:21:25.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  2182. 2019-03-27 01:21:25.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2183. 2019-03-27 01:21:25.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2184. 2019-03-27 01:21:25.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
  2185. 2019-03-27 01:21:25.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2186. 2019-03-27 01:21:25.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2187. 2019-03-27 01:21:25.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  2188. 2019-03-27 01:21:25.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2189. 2019-03-27 01:21:25.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2190. 2019-03-27 01:21:25.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  2191. 2019-03-27 01:21:25.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2192. 2019-03-27 01:21:25.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2193. 2019-03-27 01:21:25.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  2194. 2019-03-27 01:21:25.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2195. 2019-03-27 01:21:25.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2196. 2019-03-27 01:21:25.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  2197. 2019-03-27 01:21:25.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2198. 2019-03-27 01:21:25.903 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2199. 2019-03-27 01:21:25.903 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  2200. 2019-03-27 01:21:25.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2201. 2019-03-27 01:21:25.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  2202. 2019-03-27 01:21:25.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450103(String)
  2203. 2019-03-27 01:21:26.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  2204. 2019-03-27 01:21:26.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  2205. 2019-03-27 01:21:26.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
  2206. 2019-03-27 01:21:26.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2207. 2019-03-27 01:21:26.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103024(String)
  2208. 2019-03-27 01:21:26.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2209. 2019-03-27 01:21:26.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2210. 2019-03-27 01:21:26.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -1(Integer)
  2211. 2019-03-27 01:21:26.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2212. 2019-03-27 01:21:26.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2213. 2019-03-27 01:21:26.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3139(Long), 2019-03-25 22:56:17.0(Timestamp)
  2214. 2019-03-27 01:21:26.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2215. 2019-03-27 01:21:26.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2216. 2019-03-27 01:21:26.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3139(Long), 3(Integer), 153(Long), 2019-03-25 22:56:17.0(Timestamp), 2019-03-26 07:59:08.0(Timestamp), -1(Integer), 518225(Long), 陆捷(String), 3116(Long)
  2217. 2019-03-27 01:21:26.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2218. 2019-03-27 01:21:26.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2219. 2019-03-27 01:21:26.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -1(Integer)
  2220. 2019-03-27 01:21:26.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2221. 2019-03-27 01:21:26.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2222. 2019-03-27 01:21:26.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3139(Long), 2019-03-25 22:56:17.0(Timestamp)
  2223. 2019-03-27 01:21:26.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2224. 2019-03-27 01:21:26.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2225. 2019-03-27 01:21:26.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103017(String)
  2226. 2019-03-27 01:21:26.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2227. 2019-03-27 01:21:26.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2228. 2019-03-27 01:21:26.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 1(Integer), -1(Integer)
  2229. 2019-03-27 01:21:26.157 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2230. 2019-03-27 01:21:26.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2231. 2019-03-27 01:21:26.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3132(Long), 2019-03-26 07:59:16.0(Timestamp)
  2232. 2019-03-27 01:21:26.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2233. 2019-03-27 01:21:26.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2234. 2019-03-27 01:21:26.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3132(Long), 1(Integer), 153(Long), 2019-03-26 07:59:16.0(Timestamp), 2019-03-26 15:54:51.0(Timestamp), -1(Integer), 518230(Long), 徐冬冬(String), 3116(Long)
  2235. 2019-03-27 01:21:26.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2236. 2019-03-27 01:21:26.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2237. 2019-03-27 01:21:26.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 1(Integer), -1(Integer)
  2238. 2019-03-27 01:21:26.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2239. 2019-03-27 01:21:26.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2240. 2019-03-27 01:21:26.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3132(Long), 2019-03-26 07:59:16.0(Timestamp)
  2241. 2019-03-27 01:21:26.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2242. 2019-03-27 01:21:26.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2243. 2019-03-27 01:21:26.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103026(String)
  2244. 2019-03-27 01:21:26.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2245. 2019-03-27 01:21:26.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2246. 2019-03-27 01:21:26.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -1(Integer)
  2247. 2019-03-27 01:21:26.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2248. 2019-03-27 01:21:26.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2249. 2019-03-27 01:21:26.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3141(Long), 2019-03-26 15:55:07.0(Timestamp)
  2250. 2019-03-27 01:21:26.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2251. 2019-03-27 01:21:26.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2252. 2019-03-27 01:21:26.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3141(Long), 2(Integer), 153(Long), 2019-03-26 15:55:07.0(Timestamp), 2019-03-26 23:00:26.0(Timestamp), -1(Integer), 518235(Long), 叶亮(String), 3116(Long)
  2253. 2019-03-27 01:21:26.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2254. 2019-03-27 01:21:26.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2255. 2019-03-27 01:21:26.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -1(Integer)
  2256. 2019-03-27 01:21:26.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2257. 2019-03-27 01:21:26.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2258. 2019-03-27 01:21:26.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3141(Long), 2019-03-26 15:55:07.0(Timestamp)
  2259. 2019-03-27 01:21:26.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2260. 2019-03-27 01:21:26.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2261. 2019-03-27 01:21:26.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
  2262. 2019-03-27 01:21:26.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2263. 2019-03-27 01:21:26.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2264. 2019-03-27 01:21:26.377 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2265. 2019-03-27 01:21:26.385 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2266. 2019-03-27 01:21:26.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2267. 2019-03-27 01:21:26.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
  2268. 2019-03-27 01:21:26.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2269. 2019-03-27 01:21:26.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2270. 2019-03-27 01:21:26.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3138(Long), 3(Integer), 153(Long), 2019-03-25 22:56:50.0(Timestamp), 2019-03-26 08:01:55.0(Timestamp), -2(Integer), 518226(Long), 陈勇(String), 3116(Long)
  2271. 2019-03-27 01:21:26.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2272. 2019-03-27 01:21:26.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2273. 2019-03-27 01:21:26.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
  2274. 2019-03-27 01:21:26.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2275. 2019-03-27 01:21:26.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2276. 2019-03-27 01:21:26.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2277. 2019-03-27 01:21:26.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2278. 2019-03-27 01:21:26.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2279. 2019-03-27 01:21:26.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
  2280. 2019-03-27 01:21:26.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2281. 2019-03-27 01:21:26.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2282. 2019-03-27 01:21:26.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2283. 2019-03-27 01:21:26.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2284. 2019-03-27 01:21:26.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2285. 2019-03-27 01:21:26.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
  2286. 2019-03-27 01:21:26.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2287. 2019-03-27 01:21:26.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2288. 2019-03-27 01:21:26.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2289. 2019-03-27 01:21:26.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2290. 2019-03-27 01:21:26.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2291. 2019-03-27 01:21:26.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
  2292. 2019-03-27 01:21:26.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2293. 2019-03-27 01:21:26.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2294. 2019-03-27 01:21:26.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
  2295. 2019-03-27 01:21:26.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2296. 2019-03-27 01:21:26.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2297. 2019-03-27 01:21:26.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2298. 2019-03-27 01:21:26.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2299. 2019-03-27 01:21:26.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2300. 2019-03-27 01:21:26.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
  2301. 2019-03-27 01:21:26.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2302. 2019-03-27 01:21:26.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2303. 2019-03-27 01:21:26.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3136(Long), 3(Integer), 153(Long), 2019-03-26 08:02:00.0(Timestamp), 2019-03-26 15:54:48.0(Timestamp), -2(Integer), 518226(Long), 陈勇亮(String), 3116(Long)
  2304. 2019-03-27 01:21:26.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2305. 2019-03-27 01:21:26.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2306. 2019-03-27 01:21:26.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
  2307. 2019-03-27 01:21:26.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2308. 2019-03-27 01:21:26.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2309. 2019-03-27 01:21:26.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2310. 2019-03-27 01:21:26.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2311. 2019-03-27 01:21:26.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2312. 2019-03-27 01:21:26.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
  2313. 2019-03-27 01:21:26.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2314. 2019-03-27 01:21:26.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2315. 2019-03-27 01:21:26.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2316. 2019-03-27 01:21:26.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2317. 2019-03-27 01:21:26.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2318. 2019-03-27 01:21:26.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
  2319. 2019-03-27 01:21:26.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2320. 2019-03-27 01:21:26.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2321. 2019-03-27 01:21:26.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
  2322. 2019-03-27 01:21:26.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2323. 2019-03-27 01:21:26.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2324. 2019-03-27 01:21:26.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
  2325. 2019-03-27 01:21:26.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2326. 2019-03-27 01:21:26.694 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2327. 2019-03-27 01:21:26.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
  2328. 2019-03-27 01:21:26.703 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2329. 2019-03-27 01:21:26.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2330. 2019-03-27 01:21:26.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
  2331. 2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2332. 2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2333. 2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
  2334. 2019-03-27 01:21:26.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2335. 2019-03-27 01:21:26.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2336. 2019-03-27 01:21:26.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3135(Long), 2(Integer), 153(Long), 2019-03-26 15:54:55.0(Timestamp), 2019-03-26 23:00:51.0(Timestamp), -2(Integer), 518236(Long), 褚国梁(String), 3116(Long)
  2337. 2019-03-27 01:21:26.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2338. 2019-03-27 01:21:26.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2339. 2019-03-27 01:21:26.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
  2340. 2019-03-27 01:21:26.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2341. 2019-03-27 01:21:26.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2342. 2019-03-27 01:21:26.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
  2343. 2019-03-27 01:21:26.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2344. 2019-03-27 01:21:26.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2345. 2019-03-27 01:21:26.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
  2346. 2019-03-27 01:21:26.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2347. 2019-03-27 01:21:26.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2348. 2019-03-27 01:21:26.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
  2349. 2019-03-27 01:21:26.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2350. 2019-03-27 01:21:26.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2351. 2019-03-27 01:21:26.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
  2352. 2019-03-27 01:21:26.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2353. 2019-03-27 01:21:26.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2354. 2019-03-27 01:21:26.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
  2355. 2019-03-27 01:21:26.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2356. 2019-03-27 01:21:26.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2357. 2019-03-27 01:21:26.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
  2358. 2019-03-27 01:21:26.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2359. 2019-03-27 01:21:26.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2360. 2019-03-27 01:21:26.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
  2361. 2019-03-27 01:21:26.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2362. 2019-03-27 01:21:26.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2363. 2019-03-27 01:21:26.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
  2364. 2019-03-27 01:21:26.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2365. 2019-03-27 01:21:26.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2366. 2019-03-27 01:21:26.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  2367. 2019-03-27 01:21:26.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2368. 2019-03-27 01:21:26.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2369. 2019-03-27 01:21:26.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
  2370. 2019-03-27 01:21:26.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2371. 2019-03-27 01:21:26.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2372. 2019-03-27 01:21:26.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  2373. 2019-03-27 01:21:27.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2374. 2019-03-27 01:21:27.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2375. 2019-03-27 01:21:27.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  2376. 2019-03-27 01:21:27.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2377. 2019-03-27 01:21:27.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2378. 2019-03-27 01:21:27.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  2379. 2019-03-27 01:21:27.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2380. 2019-03-27 01:21:27.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2381. 2019-03-27 01:21:27.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  2382. 2019-03-27 01:21:27.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2383. 2019-03-27 01:21:27.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2384. 2019-03-27 01:21:27.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  2385. 2019-03-27 01:21:27.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2386. 2019-03-27 01:21:27.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2387. 2019-03-27 01:21:27.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  2388. 2019-03-27 01:21:27.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2389. 2019-03-27 01:21:27.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2390. 2019-03-27 01:21:27.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
  2391. 2019-03-27 01:21:27.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2392. 2019-03-27 01:21:27.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2393. 2019-03-27 01:21:27.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  2394. 2019-03-27 01:21:27.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2395. 2019-03-27 01:21:27.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2396. 2019-03-27 01:21:27.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  2397. 2019-03-27 01:21:27.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2398. 2019-03-27 01:21:27.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2399. 2019-03-27 01:21:27.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  2400. 2019-03-27 01:21:27.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2401. 2019-03-27 01:21:27.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2402. 2019-03-27 01:21:27.476 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  2403. 2019-03-27 01:21:27.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2404. 2019-03-27 01:21:27.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2405. 2019-03-27 01:21:27.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  2406. 2019-03-27 01:21:27.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2407. 2019-03-27 01:21:27.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2408. 2019-03-27 01:21:27.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  2409. 2019-03-27 01:21:27.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2410. 2019-03-27 01:21:27.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2411. 2019-03-27 01:21:27.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
  2412. 2019-03-27 01:21:27.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2413. 2019-03-27 01:21:27.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2414. 2019-03-27 01:21:27.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  2415. 2019-03-27 01:21:27.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2416. 2019-03-27 01:21:27.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2417. 2019-03-27 01:21:27.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  2418. 2019-03-27 01:21:27.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2419. 2019-03-27 01:21:27.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2420. 2019-03-27 01:21:27.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  2421. 2019-03-27 01:21:27.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2422. 2019-03-27 01:21:27.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2423. 2019-03-27 01:21:27.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  2424. 2019-03-27 01:21:27.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2425. 2019-03-27 01:21:27.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2426. 2019-03-27 01:21:27.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  2427. 2019-03-27 01:21:27.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2428. 2019-03-27 01:21:27.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  2429. 2019-03-27 01:21:27.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450201(String)
  2430. 2019-03-27 01:21:27.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  2431. 2019-03-27 01:21:27.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  2432. 2019-03-27 01:21:28.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 24
  2433. 2019-03-27 01:21:28.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2434. 2019-03-27 01:21:28.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
  2435. 2019-03-27 01:21:28.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2436. 2019-03-27 01:21:28.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2437. 2019-03-27 01:21:28.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2438. 2019-03-27 01:21:28.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2439. 2019-03-27 01:21:28.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2440. 2019-03-27 01:21:28.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
  2441. 2019-03-27 01:21:28.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2442. 2019-03-27 01:21:28.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2443. 2019-03-27 01:21:28.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3242(Long), 3(Integer), 156(Long), 2019-03-25 23:01:55.0(Timestamp), 2019-03-26 08:01:53.0(Timestamp), -1(Integer), 518240(Long), 李达(String), 3233(Long)
  2444. 2019-03-27 01:21:28.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2445. 2019-03-27 01:21:28.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2446. 2019-03-27 01:21:28.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
  2447. 2019-03-27 01:21:28.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2448. 2019-03-27 01:21:28.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2449. 2019-03-27 01:21:28.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2450. 2019-03-27 01:21:28.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2451. 2019-03-27 01:21:28.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2452. 2019-03-27 01:21:28.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
  2453. 2019-03-27 01:21:28.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2454. 2019-03-27 01:21:28.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2455. 2019-03-27 01:21:28.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2456. 2019-03-27 01:21:28.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2457. 2019-03-27 01:21:28.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2458. 2019-03-27 01:21:28.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
  2459. 2019-03-27 01:21:28.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2460. 2019-03-27 01:21:28.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2461. 2019-03-27 01:21:28.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2462. 2019-03-27 01:21:28.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2463. 2019-03-27 01:21:28.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2464. 2019-03-27 01:21:28.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
  2465. 2019-03-27 01:21:28.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2466. 2019-03-27 01:21:28.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2467. 2019-03-27 01:21:28.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
  2468. 2019-03-27 01:21:28.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2469. 2019-03-27 01:21:28.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2470. 2019-03-27 01:21:28.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2471. 2019-03-27 01:21:28.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2472. 2019-03-27 01:21:28.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2473. 2019-03-27 01:21:28.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
  2474. 2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2475. 2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2476. 2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3252(Long), 3(Integer), 156(Long), 2019-03-26 08:02:09.0(Timestamp), 2019-03-26 16:04:13.0(Timestamp), -1(Integer), 518240(Long), 程森(String), 3233(Long)
  2477. 2019-03-27 01:21:28.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2478. 2019-03-27 01:21:28.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2479. 2019-03-27 01:21:28.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
  2480. 2019-03-27 01:21:28.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2481. 2019-03-27 01:21:28.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2482. 2019-03-27 01:21:28.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2483. 2019-03-27 01:21:28.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2484. 2019-03-27 01:21:28.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2485. 2019-03-27 01:21:28.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
  2486. 2019-03-27 01:21:28.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2487. 2019-03-27 01:21:28.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2488. 2019-03-27 01:21:28.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2489. 2019-03-27 01:21:28.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2490. 2019-03-27 01:21:28.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2491. 2019-03-27 01:21:28.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
  2492. 2019-03-27 01:21:28.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2493. 2019-03-27 01:21:28.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2494. 2019-03-27 01:21:28.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2495. 2019-03-27 01:21:28.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2496. 2019-03-27 01:21:28.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2497. 2019-03-27 01:21:28.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
  2498. 2019-03-27 01:21:28.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2499. 2019-03-27 01:21:28.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2500. 2019-03-27 01:21:28.344 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
  2501. 2019-03-27 01:21:28.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2502. 2019-03-27 01:21:28.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2503. 2019-03-27 01:21:28.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2504. 2019-03-27 01:21:28.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2505. 2019-03-27 01:21:28.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2506. 2019-03-27 01:21:28.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
  2507. 2019-03-27 01:21:28.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2508. 2019-03-27 01:21:28.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2509. 2019-03-27 01:21:28.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3245(Long), 3(Integer), 156(Long), 2019-03-26 16:04:42.0(Timestamp), 2019-03-26 22:59:37.0(Timestamp), -1(Integer), 518240(Long), 姚军(String), 3233(Long)
  2510. 2019-03-27 01:21:28.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2511. 2019-03-27 01:21:28.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2512. 2019-03-27 01:21:28.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
  2513. 2019-03-27 01:21:28.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2514. 2019-03-27 01:21:28.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2515. 2019-03-27 01:21:28.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2516. 2019-03-27 01:21:28.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2517. 2019-03-27 01:21:28.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2518. 2019-03-27 01:21:28.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
  2519. 2019-03-27 01:21:28.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2520. 2019-03-27 01:21:28.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2521. 2019-03-27 01:21:28.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2522. 2019-03-27 01:21:28.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2523. 2019-03-27 01:21:28.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2524. 2019-03-27 01:21:28.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
  2525. 2019-03-27 01:21:28.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2526. 2019-03-27 01:21:28.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2527. 2019-03-27 01:21:28.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
  2528. 2019-03-27 01:21:28.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2529. 2019-03-27 01:21:28.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2530. 2019-03-27 01:21:28.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
  2531. 2019-03-27 01:21:28.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2532. 2019-03-27 01:21:28.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2533. 2019-03-27 01:21:28.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
  2534. 2019-03-27 01:21:28.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2535. 2019-03-27 01:21:28.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2536. 2019-03-27 01:21:28.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2537. 2019-03-27 01:21:28.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2538. 2019-03-27 01:21:28.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2539. 2019-03-27 01:21:28.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:07.0(Timestamp)
  2540. 2019-03-27 01:21:28.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2541. 2019-03-27 01:21:28.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2542. 2019-03-27 01:21:28.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3248(Long), 3(Integer), 156(Long), 2019-03-25 23:03:07.0(Timestamp), 2019-03-26 08:01:56.0(Timestamp), -2(Integer), 518241(Long), 周德巍(String), 3233(Long)
  2543. 2019-03-27 01:21:28.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2544. 2019-03-27 01:21:28.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2545. 2019-03-27 01:21:28.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
  2546. 2019-03-27 01:21:28.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2547. 2019-03-27 01:21:28.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2548. 2019-03-27 01:21:28.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2549. 2019-03-27 01:21:28.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2550. 2019-03-27 01:21:28.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2551. 2019-03-27 01:21:28.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
  2552. 2019-03-27 01:21:28.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2553. 2019-03-27 01:21:28.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2554. 2019-03-27 01:21:28.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2555. 2019-03-27 01:21:28.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2556. 2019-03-27 01:21:28.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2557. 2019-03-27 01:21:28.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
  2558. 2019-03-27 01:21:28.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2559. 2019-03-27 01:21:28.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2560. 2019-03-27 01:21:28.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2561. 2019-03-27 01:21:28.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2562. 2019-03-27 01:21:28.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2563. 2019-03-27 01:21:28.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
  2564. 2019-03-27 01:21:28.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2565. 2019-03-27 01:21:28.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2566. 2019-03-27 01:21:28.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
  2567. 2019-03-27 01:21:28.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2568. 2019-03-27 01:21:28.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2569. 2019-03-27 01:21:28.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2570. 2019-03-27 01:21:28.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2571. 2019-03-27 01:21:28.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2572. 2019-03-27 01:21:28.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
  2573. 2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2574. 2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2575. 2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3250(Long), 3(Integer), 156(Long), 2019-03-26 08:02:19.0(Timestamp), 2019-03-26 16:04:43.0(Timestamp), -2(Integer), 518241(Long), 成洪杰(String), 3233(Long)
  2576. 2019-03-27 01:21:28.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2577. 2019-03-27 01:21:28.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2578. 2019-03-27 01:21:28.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
  2579. 2019-03-27 01:21:28.794 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2580. 2019-03-27 01:21:28.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2581. 2019-03-27 01:21:28.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2582. 2019-03-27 01:21:28.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2583. 2019-03-27 01:21:28.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2584. 2019-03-27 01:21:28.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
  2585. 2019-03-27 01:21:28.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2586. 2019-03-27 01:21:28.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2587. 2019-03-27 01:21:28.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2588. 2019-03-27 01:21:28.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2589. 2019-03-27 01:21:28.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2590. 2019-03-27 01:21:28.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
  2591. 2019-03-27 01:21:28.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2592. 2019-03-27 01:21:28.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2593. 2019-03-27 01:21:28.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2594. 2019-03-27 01:21:28.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2595. 2019-03-27 01:21:28.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2596. 2019-03-27 01:21:28.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
  2597. 2019-03-27 01:21:28.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2598. 2019-03-27 01:21:28.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2599. 2019-03-27 01:21:28.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
  2600. 2019-03-27 01:21:28.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2601. 2019-03-27 01:21:28.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2602. 2019-03-27 01:21:28.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2603. 2019-03-27 01:21:28.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2604. 2019-03-27 01:21:28.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2605. 2019-03-27 01:21:28.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:49.0(Timestamp)
  2606. 2019-03-27 01:21:28.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2607. 2019-03-27 01:21:28.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2608. 2019-03-27 01:21:28.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3254(Long), 3(Integer), 156(Long), 2019-03-26 16:04:49.0(Timestamp), 2019-03-26 23:00:45.0(Timestamp), -2(Integer), 518241(Long), 凌晨(String), 3233(Long)
  2609. 2019-03-27 01:21:28.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2610. 2019-03-27 01:21:28.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2611. 2019-03-27 01:21:28.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
  2612. 2019-03-27 01:21:28.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2613. 2019-03-27 01:21:28.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2614. 2019-03-27 01:21:28.954 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2615. 2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2616. 2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2617. 2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
  2618. 2019-03-27 01:21:28.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2619. 2019-03-27 01:21:28.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2620. 2019-03-27 01:21:28.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2621. 2019-03-27 01:21:28.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2622. 2019-03-27 01:21:28.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2623. 2019-03-27 01:21:28.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
  2624. 2019-03-27 01:21:28.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2625. 2019-03-27 01:21:28.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2626. 2019-03-27 01:21:28.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
  2627. 2019-03-27 01:21:29.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2628. 2019-03-27 01:21:29.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2629. 2019-03-27 01:21:29.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
  2630. 2019-03-27 01:21:29.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2631. 2019-03-27 01:21:29.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2632. 2019-03-27 01:21:29.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
  2633. 2019-03-27 01:21:29.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2634. 2019-03-27 01:21:29.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  2635. 2019-03-27 01:21:29.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
  2636. 2019-03-27 01:21:29.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  2637. 2019-03-27 01:21:29.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2638. 2019-03-27 01:21:29.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  2639. 2019-03-27 01:21:29.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2640. 2019-03-27 01:21:29.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2641. 2019-03-27 01:21:29.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
  2642. 2019-03-27 01:21:29.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2643. 2019-03-27 01:21:29.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2644. 2019-03-27 01:21:29.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  2645. 2019-03-27 01:21:29.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2646. 2019-03-27 01:21:29.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2647. 2019-03-27 01:21:29.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  2648. 2019-03-27 01:21:29.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2649. 2019-03-27 01:21:29.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2650. 2019-03-27 01:21:29.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  2651. 2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2652. 2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2653. 2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  2654. 2019-03-27 01:21:29.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2655. 2019-03-27 01:21:29.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2656. 2019-03-27 01:21:29.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  2657. 2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2658. 2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2659. 2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  2660. 2019-03-27 01:21:29.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2661. 2019-03-27 01:21:29.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2662. 2019-03-27 01:21:29.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
  2663. 2019-03-27 01:21:29.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2664. 2019-03-27 01:21:29.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2665. 2019-03-27 01:21:29.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  2666. 2019-03-27 01:21:29.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2667. 2019-03-27 01:21:29.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2668. 2019-03-27 01:21:29.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  2669. 2019-03-27 01:21:29.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2670. 2019-03-27 01:21:29.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2671. 2019-03-27 01:21:29.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  2672. 2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2673. 2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2674. 2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  2675. 2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2676. 2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2677. 2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  2678. 2019-03-27 01:21:29.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2679. 2019-03-27 01:21:29.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  2680. 2019-03-27 01:21:29.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  2681. 2019-03-27 01:21:29.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  2682. 2019-03-27 01:21:29.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  2683. 2019-03-27 01:21:29.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
  2684. 2019-03-27 01:21:29.879 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  2685. 2019-03-27 01:21:29.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2686. 2019-03-27 01:21:29.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  2687. 2019-03-27 01:21:29.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2688. 2019-03-27 01:21:29.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2689. 2019-03-27 01:21:29.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  2690. 2019-03-27 01:21:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2691. 2019-03-27 01:21:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2692. 2019-03-27 01:21:30.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  2693. 2019-03-27 01:21:30.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2694. 2019-03-27 01:21:30.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2695. 2019-03-27 01:21:30.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  2696. 2019-03-27 01:21:30.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2697. 2019-03-27 01:21:30.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  2698. 2019-03-27 01:21:30.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  2699. 2019-03-27 01:21:30.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  2700. 2019-03-27 01:21:30.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  2701. 2019-03-27 01:21:30.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450202(String)
  2702. 2019-03-27 01:21:30.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  2703. 2019-03-27 01:21:30.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  2704. 2019-03-27 01:21:30.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
  2705. 2019-03-27 01:21:30.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2706. 2019-03-27 01:21:30.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
  2707. 2019-03-27 01:21:30.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2708. 2019-03-27 01:21:30.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2709. 2019-03-27 01:21:30.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2710. 2019-03-27 01:21:30.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2711. 2019-03-27 01:21:30.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2712. 2019-03-27 01:21:30.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:54.0(Timestamp)
  2713. 2019-03-27 01:21:30.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2714. 2019-03-27 01:21:30.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2715. 2019-03-27 01:21:30.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3690(Long), 3(Integer), 157(Long), 2019-03-25 23:02:54.0(Timestamp), 2019-03-25 23:07:13.0(Timestamp), -1(Integer), 518255(Long), 张漩(String), 3673(Long)
  2716. 2019-03-27 01:21:30.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2717. 2019-03-27 01:21:30.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2718. 2019-03-27 01:21:30.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
  2719. 2019-03-27 01:21:30.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2720. 2019-03-27 01:21:30.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2721. 2019-03-27 01:21:30.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2722. 2019-03-27 01:21:30.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2723. 2019-03-27 01:21:30.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2724. 2019-03-27 01:21:30.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
  2725. 2019-03-27 01:21:30.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2726. 2019-03-27 01:21:30.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2727. 2019-03-27 01:21:30.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2728. 2019-03-27 01:21:30.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2729. 2019-03-27 01:21:30.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2730. 2019-03-27 01:21:30.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
  2731. 2019-03-27 01:21:30.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2732. 2019-03-27 01:21:30.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2733. 2019-03-27 01:21:30.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2734. 2019-03-27 01:21:30.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2735. 2019-03-27 01:21:30.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2736. 2019-03-27 01:21:30.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
  2737. 2019-03-27 01:21:30.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2738. 2019-03-27 01:21:30.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2739. 2019-03-27 01:21:30.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
  2740. 2019-03-27 01:21:30.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2741. 2019-03-27 01:21:30.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2742. 2019-03-27 01:21:30.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2743. 2019-03-27 01:21:30.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2744. 2019-03-27 01:21:30.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2745. 2019-03-27 01:21:30.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:19.0(Timestamp)
  2746. 2019-03-27 01:21:30.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2747. 2019-03-27 01:21:30.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2748. 2019-03-27 01:21:30.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3693(Long), 3(Integer), 157(Long), 2019-03-25 23:07:19.0(Timestamp), 2019-03-26 08:01:47.0(Timestamp), -1(Integer), 518255(Long), 花敏(String), 3673(Long)
  2749. 2019-03-27 01:21:30.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2750. 2019-03-27 01:21:30.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2751. 2019-03-27 01:21:30.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
  2752. 2019-03-27 01:21:30.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2753. 2019-03-27 01:21:30.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2754. 2019-03-27 01:21:30.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2755. 2019-03-27 01:21:30.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2756. 2019-03-27 01:21:30.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2757. 2019-03-27 01:21:30.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
  2758. 2019-03-27 01:21:30.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2759. 2019-03-27 01:21:30.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2760. 2019-03-27 01:21:30.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2761. 2019-03-27 01:21:30.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2762. 2019-03-27 01:21:30.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2763. 2019-03-27 01:21:30.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
  2764. 2019-03-27 01:21:30.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2765. 2019-03-27 01:21:30.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2766. 2019-03-27 01:21:30.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2767. 2019-03-27 01:21:30.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2768. 2019-03-27 01:21:30.582 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2769. 2019-03-27 01:21:30.583 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
  2770. 2019-03-27 01:21:30.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2771. 2019-03-27 01:21:30.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2772. 2019-03-27 01:21:30.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
  2773. 2019-03-27 01:21:30.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2774. 2019-03-27 01:21:30.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2775. 2019-03-27 01:21:30.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2776. 2019-03-27 01:21:30.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2777. 2019-03-27 01:21:30.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2778. 2019-03-27 01:21:30.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
  2779. 2019-03-27 01:21:30.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2780. 2019-03-27 01:21:30.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2781. 2019-03-27 01:21:30.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
  2782. 2019-03-27 01:21:30.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2783. 2019-03-27 01:21:30.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2784. 2019-03-27 01:21:30.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2785. 2019-03-27 01:21:30.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2786. 2019-03-27 01:21:30.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2787. 2019-03-27 01:21:30.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
  2788. 2019-03-27 01:21:30.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2789. 2019-03-27 01:21:30.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2790. 2019-03-27 01:21:30.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2791. 2019-03-27 01:21:30.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2792. 2019-03-27 01:21:30.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2793. 2019-03-27 01:21:30.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
  2794. 2019-03-27 01:21:30.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2795. 2019-03-27 01:21:30.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2796. 2019-03-27 01:21:30.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2797. 2019-03-27 01:21:30.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2798. 2019-03-27 01:21:30.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2799. 2019-03-27 01:21:30.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
  2800. 2019-03-27 01:21:30.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2801. 2019-03-27 01:21:30.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2802. 2019-03-27 01:21:30.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
  2803. 2019-03-27 01:21:30.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2804. 2019-03-27 01:21:30.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2805. 2019-03-27 01:21:30.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2806. 2019-03-27 01:21:30.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2807. 2019-03-27 01:21:30.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2808. 2019-03-27 01:21:30.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:36.0(Timestamp)
  2809. 2019-03-27 01:21:30.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2810. 2019-03-27 01:21:30.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2811. 2019-03-27 01:21:30.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3694(Long), 3(Integer), 157(Long), 2019-03-26 16:02:36.0(Timestamp), 2019-03-26 23:09:32.0(Timestamp), -1(Integer), 518255(Long), 姜磊(String), 3673(Long)
  2812. 2019-03-27 01:21:30.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2813. 2019-03-27 01:21:30.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2814. 2019-03-27 01:21:30.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
  2815. 2019-03-27 01:21:30.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2816. 2019-03-27 01:21:30.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2817. 2019-03-27 01:21:30.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2818. 2019-03-27 01:21:30.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2819. 2019-03-27 01:21:30.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2820. 2019-03-27 01:21:30.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
  2821. 2019-03-27 01:21:30.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2822. 2019-03-27 01:21:30.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2823. 2019-03-27 01:21:30.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2824. 2019-03-27 01:21:30.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2825. 2019-03-27 01:21:30.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2826. 2019-03-27 01:21:30.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
  2827. 2019-03-27 01:21:30.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2828. 2019-03-27 01:21:30.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2829. 2019-03-27 01:21:30.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
  2830. 2019-03-27 01:21:30.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2831. 2019-03-27 01:21:30.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2832. 2019-03-27 01:21:30.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
  2833. 2019-03-27 01:21:30.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2834. 2019-03-27 01:21:30.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2835. 2019-03-27 01:21:30.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
  2836. 2019-03-27 01:21:30.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2837. 2019-03-27 01:21:30.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2838. 2019-03-27 01:21:30.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2839. 2019-03-27 01:21:30.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2840. 2019-03-27 01:21:30.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2841. 2019-03-27 01:21:30.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:57.0(Timestamp)
  2842. 2019-03-27 01:21:30.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2843. 2019-03-27 01:21:30.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2844. 2019-03-27 01:21:30.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
  2845. 2019-03-27 01:21:30.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2846. 2019-03-27 01:21:30.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2847. 2019-03-27 01:21:30.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2848. 2019-03-27 01:21:30.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2849. 2019-03-27 01:21:30.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2850. 2019-03-27 01:21:30.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
  2851. 2019-03-27 01:21:30.934 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2852. 2019-03-27 01:21:30.935 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2853. 2019-03-27 01:21:30.935 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2854. 2019-03-27 01:21:30.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2855. 2019-03-27 01:21:30.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2856. 2019-03-27 01:21:30.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
  2857. 2019-03-27 01:21:30.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2858. 2019-03-27 01:21:30.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2859. 2019-03-27 01:21:30.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2860. 2019-03-27 01:21:30.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2861. 2019-03-27 01:21:30.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2862. 2019-03-27 01:21:30.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
  2863. 2019-03-27 01:21:30.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2864. 2019-03-27 01:21:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2865. 2019-03-27 01:21:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
  2866. 2019-03-27 01:21:30.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2867. 2019-03-27 01:21:30.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2868. 2019-03-27 01:21:30.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2869. 2019-03-27 01:21:30.992 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2870. 2019-03-27 01:21:30.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2871. 2019-03-27 01:21:30.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:26.0(Timestamp)
  2872. 2019-03-27 01:21:31.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2873. 2019-03-27 01:21:31.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2874. 2019-03-27 01:21:31.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3695(Long), 3(Integer), 157(Long), 2019-03-26 08:01:26.0(Timestamp), 2019-03-26 16:00:42.0(Timestamp), -2(Integer), 518256(Long), 朱彬(String), 3673(Long)
  2875. 2019-03-27 01:21:31.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2876. 2019-03-27 01:21:31.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2877. 2019-03-27 01:21:31.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
  2878. 2019-03-27 01:21:31.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2879. 2019-03-27 01:21:31.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2880. 2019-03-27 01:21:31.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2881. 2019-03-27 01:21:31.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2882. 2019-03-27 01:21:31.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2883. 2019-03-27 01:21:31.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
  2884. 2019-03-27 01:21:31.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2885. 2019-03-27 01:21:31.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2886. 2019-03-27 01:21:31.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2887. 2019-03-27 01:21:31.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2888. 2019-03-27 01:21:31.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2889. 2019-03-27 01:21:31.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
  2890. 2019-03-27 01:21:31.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2891. 2019-03-27 01:21:31.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2892. 2019-03-27 01:21:31.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2893. 2019-03-27 01:21:31.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2894. 2019-03-27 01:21:31.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2895. 2019-03-27 01:21:31.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
  2896. 2019-03-27 01:21:31.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2897. 2019-03-27 01:21:31.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2898. 2019-03-27 01:21:31.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
  2899. 2019-03-27 01:21:31.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2900. 2019-03-27 01:21:31.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2901. 2019-03-27 01:21:31.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2902. 2019-03-27 01:21:31.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2903. 2019-03-27 01:21:31.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2904. 2019-03-27 01:21:31.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:00:59.0(Timestamp)
  2905. 2019-03-27 01:21:31.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2906. 2019-03-27 01:21:31.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2907. 2019-03-27 01:21:31.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3699(Long), 3(Integer), 157(Long), 2019-03-26 16:00:59.0(Timestamp), 2019-03-26 23:07:39.0(Timestamp), -2(Integer), 518256(Long), 章绚(String), 3673(Long)
  2908. 2019-03-27 01:21:31.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2909. 2019-03-27 01:21:31.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2910. 2019-03-27 01:21:31.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
  2911. 2019-03-27 01:21:31.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2912. 2019-03-27 01:21:31.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2913. 2019-03-27 01:21:31.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2914. 2019-03-27 01:21:31.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2915. 2019-03-27 01:21:31.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2916. 2019-03-27 01:21:31.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
  2917. 2019-03-27 01:21:31.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2918. 2019-03-27 01:21:31.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2919. 2019-03-27 01:21:31.266 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2920. 2019-03-27 01:21:31.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2921. 2019-03-27 01:21:31.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2922. 2019-03-27 01:21:31.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
  2923. 2019-03-27 01:21:31.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2924. 2019-03-27 01:21:31.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2925. 2019-03-27 01:21:31.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
  2926. 2019-03-27 01:21:31.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2927. 2019-03-27 01:21:31.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2928. 2019-03-27 01:21:31.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
  2929. 2019-03-27 01:21:31.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2930. 2019-03-27 01:21:31.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2931. 2019-03-27 01:21:31.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
  2932. 2019-03-27 01:21:31.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2933. 2019-03-27 01:21:31.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2934. 2019-03-27 01:21:31.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2935. 2019-03-27 01:21:31.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2936. 2019-03-27 01:21:31.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2937. 2019-03-27 01:21:31.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:10.0(Timestamp)
  2938. 2019-03-27 01:21:31.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  2939. 2019-03-27 01:21:31.338 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  2940. 2019-03-27 01:21:31.339 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3696(Long), 3(Integer), 157(Long), 2019-03-25 23:06:10.0(Timestamp), 2019-03-26 08:01:07.0(Timestamp), -3(Integer), 518257(Long), 程华(String), 3673(Long)
  2941. 2019-03-27 01:21:31.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  2942. 2019-03-27 01:21:31.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2943. 2019-03-27 01:21:31.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
  2944. 2019-03-27 01:21:31.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2945. 2019-03-27 01:21:31.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2946. 2019-03-27 01:21:31.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2947. 2019-03-27 01:21:31.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2948. 2019-03-27 01:21:31.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2949. 2019-03-27 01:21:31.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
  2950. 2019-03-27 01:21:31.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2951. 2019-03-27 01:21:31.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2952. 2019-03-27 01:21:31.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2953. 2019-03-27 01:21:31.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2954. 2019-03-27 01:21:31.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2955. 2019-03-27 01:21:31.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
  2956. 2019-03-27 01:21:31.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2957. 2019-03-27 01:21:31.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2958. 2019-03-27 01:21:31.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2959. 2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2960. 2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2961. 2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
  2962. 2019-03-27 01:21:31.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2963. 2019-03-27 01:21:31.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2964. 2019-03-27 01:21:31.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
  2965. 2019-03-27 01:21:31.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2966. 2019-03-27 01:21:31.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2967. 2019-03-27 01:21:31.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2968. 2019-03-27 01:21:31.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2969. 2019-03-27 01:21:31.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2970. 2019-03-27 01:21:31.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
  2971. 2019-03-27 01:21:31.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2972. 2019-03-27 01:21:31.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2973. 2019-03-27 01:21:31.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
  2974. 2019-03-27 01:21:31.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2975. 2019-03-27 01:21:31.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2976. 2019-03-27 01:21:31.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2977. 2019-03-27 01:21:31.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2978. 2019-03-27 01:21:31.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2979. 2019-03-27 01:21:31.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
  2980. 2019-03-27 01:21:31.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2981. 2019-03-27 01:21:31.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2982. 2019-03-27 01:21:31.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2983. 2019-03-27 01:21:31.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2984. 2019-03-27 01:21:31.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2985. 2019-03-27 01:21:31.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
  2986. 2019-03-27 01:21:31.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2987. 2019-03-27 01:21:31.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2988. 2019-03-27 01:21:31.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2989. 2019-03-27 01:21:31.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2990. 2019-03-27 01:21:31.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  2991. 2019-03-27 01:21:31.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
  2992. 2019-03-27 01:21:31.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  2993. 2019-03-27 01:21:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  2994. 2019-03-27 01:21:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
  2995. 2019-03-27 01:21:31.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  2996. 2019-03-27 01:21:31.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  2997. 2019-03-27 01:21:31.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  2998. 2019-03-27 01:21:31.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  2999. 2019-03-27 01:21:31.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3000. 2019-03-27 01:21:31.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:54.0(Timestamp)
  3001. 2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3002. 2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3003. 2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3697(Long), 3(Integer), 157(Long), 2019-03-26 16:02:54.0(Timestamp), 2019-03-26 23:07:19.0(Timestamp), -3(Integer), 518257(Long), 陈春霞(String), 3673(Long)
  3004. 2019-03-27 01:21:31.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3005. 2019-03-27 01:21:31.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3006. 2019-03-27 01:21:31.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
  3007. 2019-03-27 01:21:31.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3008. 2019-03-27 01:21:31.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3009. 2019-03-27 01:21:31.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  3010. 2019-03-27 01:21:31.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3011. 2019-03-27 01:21:31.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3012. 2019-03-27 01:21:31.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
  3013. 2019-03-27 01:21:31.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3014. 2019-03-27 01:21:31.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3015. 2019-03-27 01:21:31.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  3016. 2019-03-27 01:21:31.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3017. 2019-03-27 01:21:31.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3018. 2019-03-27 01:21:31.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
  3019. 2019-03-27 01:21:31.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3020. 2019-03-27 01:21:31.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3021. 2019-03-27 01:21:31.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
  3022. 2019-03-27 01:21:31.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3023. 2019-03-27 01:21:31.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3024. 2019-03-27 01:21:31.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
  3025. 2019-03-27 01:21:31.724 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3026. 2019-03-27 01:21:31.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3027. 2019-03-27 01:21:31.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202009(String)
  3028. 2019-03-27 01:21:31.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3029. 2019-03-27 01:21:31.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3030. 2019-03-27 01:21:31.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
  3031. 2019-03-27 01:21:31.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3032. 2019-03-27 01:21:31.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3033. 2019-03-27 01:21:31.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3681(Long), 2019-03-25 23:01:27.0(Timestamp)
  3034. 2019-03-27 01:21:31.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3035. 2019-03-27 01:21:31.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3036. 2019-03-27 01:21:31.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3681(Long), 3(Integer), 157(Long), 2019-03-25 23:01:27.0(Timestamp), 2019-03-26 08:01:47.0(Timestamp), -4(Integer), 518258(Long), 颜晓强(String), 3673(Long)
  3037. 2019-03-27 01:21:31.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3038. 2019-03-27 01:21:31.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3039. 2019-03-27 01:21:31.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
  3040. 2019-03-27 01:21:31.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3041. 2019-03-27 01:21:31.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3042. 2019-03-27 01:21:31.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3681(Long), 2019-03-25 23:01:27.0(Timestamp)
  3043. 2019-03-27 01:21:31.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3044. 2019-03-27 01:21:31.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3045. 2019-03-27 01:21:31.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202018(String)
  3046. 2019-03-27 01:21:31.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3047. 2019-03-27 01:21:31.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3048. 2019-03-27 01:21:31.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
  3049. 2019-03-27 01:21:31.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3050. 2019-03-27 01:21:31.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3051. 2019-03-27 01:21:31.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3686(Long), 2019-03-26 08:02:28.0(Timestamp)
  3052. 2019-03-27 01:21:31.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3053. 2019-03-27 01:21:31.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3054. 2019-03-27 01:21:31.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3686(Long), 3(Integer), 157(Long), 2019-03-26 08:02:28.0(Timestamp), 2019-03-26 15:58:39.0(Timestamp), -4(Integer), 518258(Long), 张晓春(String), 3673(Long)
  3055. 2019-03-27 01:21:31.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3056. 2019-03-27 01:21:31.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3057. 2019-03-27 01:21:31.920 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
  3058. 2019-03-27 01:21:31.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3059. 2019-03-27 01:21:31.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3060. 2019-03-27 01:21:31.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3686(Long), 2019-03-26 08:02:28.0(Timestamp)
  3061. 2019-03-27 01:21:31.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3062. 2019-03-27 01:21:31.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3063. 2019-03-27 01:21:31.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202015(String)
  3064. 2019-03-27 01:21:31.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3065. 2019-03-27 01:21:31.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3066. 2019-03-27 01:21:31.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 2(Integer), -4(Integer)
  3067. 2019-03-27 01:21:31.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3068. 2019-03-27 01:21:31.961 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3069. 2019-03-27 01:21:31.961 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3683(Long), 2019-03-26 15:58:58.0(Timestamp)
  3070. 2019-03-27 01:21:31.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3071. 2019-03-27 01:21:31.970 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3072. 2019-03-27 01:21:31.970 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3683(Long), 2(Integer), 157(Long), 2019-03-26 15:58:58.0(Timestamp), 2019-03-26 23:07:22.0(Timestamp), -4(Integer), 518268(Long), 殷骥(String), 3673(Long)
  3073. 2019-03-27 01:21:32.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3074. 2019-03-27 01:21:32.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3075. 2019-03-27 01:21:32.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 2(Integer), -4(Integer)
  3076. 2019-03-27 01:21:32.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3077. 2019-03-27 01:21:32.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3078. 2019-03-27 01:21:32.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3683(Long), 2019-03-26 15:58:58.0(Timestamp)
  3079. 2019-03-27 01:21:32.048 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3080. 2019-03-27 01:21:32.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3081. 2019-03-27 01:21:32.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
  3082. 2019-03-27 01:21:32.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3083. 2019-03-27 01:21:32.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3084. 2019-03-27 01:21:32.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
  3085. 2019-03-27 01:21:32.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3086. 2019-03-27 01:21:32.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3087. 2019-03-27 01:21:32.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3088. 2019-03-27 01:21:32.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3089. 2019-03-27 01:21:32.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3090. 2019-03-27 01:21:32.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
  3091. 2019-03-27 01:21:32.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3092. 2019-03-27 01:21:32.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3093. 2019-03-27 01:21:32.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  3094. 2019-03-27 01:21:32.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3095. 2019-03-27 01:21:32.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3096. 2019-03-27 01:21:32.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  3097. 2019-03-27 01:21:32.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3098. 2019-03-27 01:21:32.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3099. 2019-03-27 01:21:32.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  3100. 2019-03-27 01:21:32.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3101. 2019-03-27 01:21:32.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3102. 2019-03-27 01:21:32.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  3103. 2019-03-27 01:21:32.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3104. 2019-03-27 01:21:32.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3105. 2019-03-27 01:21:32.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  3106. 2019-03-27 01:21:32.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3107. 2019-03-27 01:21:32.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3108. 2019-03-27 01:21:32.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3109. 2019-03-27 01:21:32.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3110. 2019-03-27 01:21:32.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3111. 2019-03-27 01:21:32.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
  3112. 2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3113. 2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3114. 2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  3115. 2019-03-27 01:21:32.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3116. 2019-03-27 01:21:32.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3117. 2019-03-27 01:21:32.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  3118. 2019-03-27 01:21:32.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3119. 2019-03-27 01:21:32.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3120. 2019-03-27 01:21:32.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  3121. 2019-03-27 01:21:32.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3122. 2019-03-27 01:21:32.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3123. 2019-03-27 01:21:32.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  3124. 2019-03-27 01:21:32.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3125. 2019-03-27 01:21:32.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3126. 2019-03-27 01:21:32.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  3127. 2019-03-27 01:21:32.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3128. 2019-03-27 01:21:32.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3129. 2019-03-27 01:21:32.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3130. 2019-03-27 01:21:32.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3131. 2019-03-27 01:21:32.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3132. 2019-03-27 01:21:32.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
  3133. 2019-03-27 01:21:32.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3134. 2019-03-27 01:21:32.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3135. 2019-03-27 01:21:32.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  3136. 2019-03-27 01:21:32.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3137. 2019-03-27 01:21:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3138. 2019-03-27 01:21:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  3139. 2019-03-27 01:21:32.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3140. 2019-03-27 01:21:32.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3141. 2019-03-27 01:21:32.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  3142. 2019-03-27 01:21:33.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3143. 2019-03-27 01:21:33.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3144. 2019-03-27 01:21:33.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  3145. 2019-03-27 01:21:33.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3146. 2019-03-27 01:21:33.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3147. 2019-03-27 01:21:33.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  3148. 2019-03-27 01:21:33.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3149. 2019-03-27 01:21:33.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3150. 2019-03-27 01:21:33.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450203(String)
  3151. 2019-03-27 01:21:33.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3152. 2019-03-27 01:21:33.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3153. 2019-03-27 01:21:33.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 30
  3154. 2019-03-27 01:21:33.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3155. 2019-03-27 01:21:33.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203012(String)
  3156. 2019-03-27 01:21:33.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3157. 2019-03-27 01:21:33.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3158. 2019-03-27 01:21:33.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -1(Integer)
  3159. 2019-03-27 01:21:33.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3160. 2019-03-27 01:21:33.223 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3161. 2019-03-27 01:21:33.223 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3169(Long), 2019-03-25 23:00:29.0(Timestamp)
  3162. 2019-03-27 01:21:33.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3163. 2019-03-27 01:21:33.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3164. 2019-03-27 01:21:33.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -1(Integer)
  3165. 2019-03-27 01:21:33.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3166. 2019-03-27 01:21:33.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3167. 2019-03-27 01:21:33.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3169(Long), 2019-03-25 23:00:29.0(Timestamp)
  3168. 2019-03-27 01:21:33.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3169. 2019-03-27 01:21:33.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3170. 2019-03-27 01:21:33.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203014(String)
  3171. 2019-03-27 01:21:33.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3172. 2019-03-27 01:21:33.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3173. 2019-03-27 01:21:33.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -1(Integer)
  3174. 2019-03-27 01:21:33.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3175. 2019-03-27 01:21:33.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3176. 2019-03-27 01:21:33.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3159(Long), 2019-03-26 07:55:28.0(Timestamp)
  3177. 2019-03-27 01:21:33.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3178. 2019-03-27 01:21:33.278 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3179. 2019-03-27 01:21:33.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -1(Integer)
  3180. 2019-03-27 01:21:33.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3181. 2019-03-27 01:21:33.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3182. 2019-03-27 01:21:33.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3159(Long), 2019-03-26 07:55:28.0(Timestamp)
  3183. 2019-03-27 01:21:33.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3184. 2019-03-27 01:21:33.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3185. 2019-03-27 01:21:33.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203022(String)
  3186. 2019-03-27 01:21:33.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3187. 2019-03-27 01:21:33.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3188. 2019-03-27 01:21:33.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -1(Integer)
  3189. 2019-03-27 01:21:33.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3190. 2019-03-27 01:21:33.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3191. 2019-03-27 01:21:33.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3148(Long), 2019-03-26 15:56:57.0(Timestamp)
  3192. 2019-03-27 01:21:33.335 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3193. 2019-03-27 01:21:33.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3194. 2019-03-27 01:21:33.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3148(Long), 2(Integer), 151(Long), 2019-03-26 15:56:57.0(Timestamp), 2019-03-26 23:06:21.0(Timestamp), -1(Integer), 518280(Long), 吕超(String), 3144(Long)
  3195. 2019-03-27 01:21:33.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3196. 2019-03-27 01:21:33.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3197. 2019-03-27 01:21:33.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -1(Integer)
  3198. 2019-03-27 01:21:33.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3199. 2019-03-27 01:21:33.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3200. 2019-03-27 01:21:33.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3148(Long), 2019-03-26 15:56:57.0(Timestamp)
  3201. 2019-03-27 01:21:33.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3202. 2019-03-27 01:21:33.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3203. 2019-03-27 01:21:33.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
  3204. 2019-03-27 01:21:33.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3205. 2019-03-27 01:21:33.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3206. 2019-03-27 01:21:33.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
  3207. 2019-03-27 01:21:33.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3208. 2019-03-27 01:21:33.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3209. 2019-03-27 01:21:33.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:00:58.0(Timestamp)
  3210. 2019-03-27 01:21:33.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3211. 2019-03-27 01:21:33.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3212. 2019-03-27 01:21:33.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
  3213. 2019-03-27 01:21:33.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3214. 2019-03-27 01:21:33.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3215. 2019-03-27 01:21:33.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
  3216. 2019-03-27 01:21:33.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3217. 2019-03-27 01:21:33.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3218. 2019-03-27 01:21:33.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
  3219. 2019-03-27 01:21:33.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3220. 2019-03-27 01:21:33.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3221. 2019-03-27 01:21:33.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
  3222. 2019-03-27 01:21:33.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3223. 2019-03-27 01:21:33.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3224. 2019-03-27 01:21:33.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
  3225. 2019-03-27 01:21:33.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3226. 2019-03-27 01:21:33.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3227. 2019-03-27 01:21:33.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
  3228. 2019-03-27 01:21:33.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3229. 2019-03-27 01:21:33.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3230. 2019-03-27 01:21:33.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
  3231. 2019-03-27 01:21:33.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3232. 2019-03-27 01:21:33.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3233. 2019-03-27 01:21:33.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
  3234. 2019-03-27 01:21:33.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3235. 2019-03-27 01:21:33.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3236. 2019-03-27 01:21:33.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
  3237. 2019-03-27 01:21:33.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3238. 2019-03-27 01:21:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3239. 2019-03-27 01:21:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:15.0(Timestamp)
  3240. 2019-03-27 01:21:33.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3241. 2019-03-27 01:21:33.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3242. 2019-03-27 01:21:33.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
  3243. 2019-03-27 01:21:33.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3244. 2019-03-27 01:21:33.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3245. 2019-03-27 01:21:33.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
  3246. 2019-03-27 01:21:33.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3247. 2019-03-27 01:21:33.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3248. 2019-03-27 01:21:33.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
  3249. 2019-03-27 01:21:33.615 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3250. 2019-03-27 01:21:33.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3251. 2019-03-27 01:21:33.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
  3252. 2019-03-27 01:21:33.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3253. 2019-03-27 01:21:33.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3254. 2019-03-27 01:21:33.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
  3255. 2019-03-27 01:21:33.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3256. 2019-03-27 01:21:33.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3257. 2019-03-27 01:21:33.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
  3258. 2019-03-27 01:21:33.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3259. 2019-03-27 01:21:33.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3260. 2019-03-27 01:21:33.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
  3261. 2019-03-27 01:21:33.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3262. 2019-03-27 01:21:33.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3263. 2019-03-27 01:21:33.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
  3264. 2019-03-27 01:21:33.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3265. 2019-03-27 01:21:33.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3266. 2019-03-27 01:21:33.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
  3267. 2019-03-27 01:21:33.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3268. 2019-03-27 01:21:33.689 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3269. 2019-03-27 01:21:33.689 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:00.0(Timestamp)
  3270. 2019-03-27 01:21:33.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3271. 2019-03-27 01:21:33.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3272. 2019-03-27 01:21:33.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
  3273. 2019-03-27 01:21:33.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3274. 2019-03-27 01:21:33.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3275. 2019-03-27 01:21:33.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
  3276. 2019-03-27 01:21:33.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3277. 2019-03-27 01:21:33.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3278. 2019-03-27 01:21:33.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
  3279. 2019-03-27 01:21:33.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3280. 2019-03-27 01:21:33.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3281. 2019-03-27 01:21:33.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
  3282. 2019-03-27 01:21:33.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3283. 2019-03-27 01:21:33.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3284. 2019-03-27 01:21:33.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
  3285. 2019-03-27 01:21:33.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3286. 2019-03-27 01:21:33.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3287. 2019-03-27 01:21:33.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
  3288. 2019-03-27 01:21:33.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3289. 2019-03-27 01:21:33.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3290. 2019-03-27 01:21:33.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
  3291. 2019-03-27 01:21:33.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3292. 2019-03-27 01:21:33.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3293. 2019-03-27 01:21:33.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
  3294. 2019-03-27 01:21:33.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3295. 2019-03-27 01:21:33.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3296. 2019-03-27 01:21:33.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
  3297. 2019-03-27 01:21:33.803 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3298. 2019-03-27 01:21:33.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3299. 2019-03-27 01:21:33.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:26.0(Timestamp)
  3300. 2019-03-27 01:21:33.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3301. 2019-03-27 01:21:33.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3302. 2019-03-27 01:21:33.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3156(Long), 3(Integer), 151(Long), 2019-03-25 23:01:26.0(Timestamp), 2019-03-26 07:56:57.0(Timestamp), -3(Integer), 518272(Long), 曹亚莉(String), 3144(Long)
  3303. 2019-03-27 01:21:33.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3304. 2019-03-27 01:21:33.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3305. 2019-03-27 01:21:33.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
  3306. 2019-03-27 01:21:33.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3307. 2019-03-27 01:21:33.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3308. 2019-03-27 01:21:33.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
  3309. 2019-03-27 01:21:33.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3310. 2019-03-27 01:21:33.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3311. 2019-03-27 01:21:33.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
  3312. 2019-03-27 01:21:33.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3313. 2019-03-27 01:21:33.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3314. 2019-03-27 01:21:33.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
  3315. 2019-03-27 01:21:33.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3316. 2019-03-27 01:21:33.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3317. 2019-03-27 01:21:33.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
  3318. 2019-03-27 01:21:33.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3319. 2019-03-27 01:21:33.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3320. 2019-03-27 01:21:33.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
  3321. 2019-03-27 01:21:33.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3322. 2019-03-27 01:21:33.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3323. 2019-03-27 01:21:33.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
  3324. 2019-03-27 01:21:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3325. 2019-03-27 01:21:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3326. 2019-03-27 01:21:33.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
  3327. 2019-03-27 01:21:33.955 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3328. 2019-03-27 01:21:33.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3329. 2019-03-27 01:21:33.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
  3330. 2019-03-27 01:21:33.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3331. 2019-03-27 01:21:33.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3332. 2019-03-27 01:21:33.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
  3333. 2019-03-27 01:21:33.979 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3334. 2019-03-27 01:21:33.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3335. 2019-03-27 01:21:33.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
  3336. 2019-03-27 01:21:33.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3337. 2019-03-27 01:21:33.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3338. 2019-03-27 01:21:33.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
  3339. 2019-03-27 01:21:33.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3340. 2019-03-27 01:21:33.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3341. 2019-03-27 01:21:33.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
  3342. 2019-03-27 01:21:34.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3343. 2019-03-27 01:21:34.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3344. 2019-03-27 01:21:34.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
  3345. 2019-03-27 01:21:34.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3346. 2019-03-27 01:21:34.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3347. 2019-03-27 01:21:34.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
  3348. 2019-03-27 01:21:34.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3349. 2019-03-27 01:21:34.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3350. 2019-03-27 01:21:34.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
  3351. 2019-03-27 01:21:34.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3352. 2019-03-27 01:21:34.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3353. 2019-03-27 01:21:34.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
  3354. 2019-03-27 01:21:34.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3355. 2019-03-27 01:21:34.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3356. 2019-03-27 01:21:34.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
  3357. 2019-03-27 01:21:34.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3358. 2019-03-27 01:21:34.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3359. 2019-03-27 01:21:34.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
  3360. 2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3361. 2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3362. 2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
  3363. 2019-03-27 01:21:34.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3364. 2019-03-27 01:21:34.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3365. 2019-03-27 01:21:34.066 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3150(Long), 2(Integer), 151(Long), 2019-03-26 15:58:02.0(Timestamp), 2019-03-26 23:02:19.0(Timestamp), -3(Integer), 518282(Long), 张健(String), 3144(Long)
  3366. 2019-03-27 01:21:34.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3367. 2019-03-27 01:21:34.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3368. 2019-03-27 01:21:34.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
  3369. 2019-03-27 01:21:34.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3370. 2019-03-27 01:21:34.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3371. 2019-03-27 01:21:34.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
  3372. 2019-03-27 01:21:34.135 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3373. 2019-03-27 01:21:34.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3374. 2019-03-27 01:21:34.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
  3375. 2019-03-27 01:21:34.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3376. 2019-03-27 01:21:34.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3377. 2019-03-27 01:21:34.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
  3378. 2019-03-27 01:21:34.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3379. 2019-03-27 01:21:34.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3380. 2019-03-27 01:21:34.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
  3381. 2019-03-27 01:21:34.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3382. 2019-03-27 01:21:34.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3383. 2019-03-27 01:21:34.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
  3384. 2019-03-27 01:21:34.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3385. 2019-03-27 01:21:34.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3386. 2019-03-27 01:21:34.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
  3387. 2019-03-27 01:21:34.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3388. 2019-03-27 01:21:34.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3389. 2019-03-27 01:21:34.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
  3390. 2019-03-27 01:21:34.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3391. 2019-03-27 01:21:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3392. 2019-03-27 01:21:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
  3393. 2019-03-27 01:21:34.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3394. 2019-03-27 01:21:34.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3395. 2019-03-27 01:21:34.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3396. 2019-03-27 01:21:34.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3397. 2019-03-27 01:21:34.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3398. 2019-03-27 01:21:34.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
  3399. 2019-03-27 01:21:34.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3400. 2019-03-27 01:21:34.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3401. 2019-03-27 01:21:34.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
  3402. 2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3403. 2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3404. 2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
  3405. 2019-03-27 01:21:34.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3406. 2019-03-27 01:21:34.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3407. 2019-03-27 01:21:34.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
  3408. 2019-03-27 01:21:34.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3409. 2019-03-27 01:21:34.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3410. 2019-03-27 01:21:34.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
  3411. 2019-03-27 01:21:34.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3412. 2019-03-27 01:21:34.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3413. 2019-03-27 01:21:34.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
  3414. 2019-03-27 01:21:34.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3415. 2019-03-27 01:21:34.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3416. 2019-03-27 01:21:34.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3417. 2019-03-27 01:21:34.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3418. 2019-03-27 01:21:34.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3419. 2019-03-27 01:21:34.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
  3420. 2019-03-27 01:21:34.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3421. 2019-03-27 01:21:34.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3422. 2019-03-27 01:21:34.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
  3423. 2019-03-27 01:21:34.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3424. 2019-03-27 01:21:34.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3425. 2019-03-27 01:21:34.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
  3426. 2019-03-27 01:21:34.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3427. 2019-03-27 01:21:34.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3428. 2019-03-27 01:21:34.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
  3429. 2019-03-27 01:21:34.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3430. 2019-03-27 01:21:34.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3431. 2019-03-27 01:21:34.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
  3432. 2019-03-27 01:21:34.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3433. 2019-03-27 01:21:34.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3434. 2019-03-27 01:21:34.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
  3435. 2019-03-27 01:21:34.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3436. 2019-03-27 01:21:34.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3437. 2019-03-27 01:21:34.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3438. 2019-03-27 01:21:35.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3439. 2019-03-27 01:21:35.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3440. 2019-03-27 01:21:35.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
  3441. 2019-03-27 01:21:35.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
  3442. 2019-03-27 01:21:35.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3443. 2019-03-27 01:21:35.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
  3444. 2019-03-27 01:21:35.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3445. 2019-03-27 01:21:35.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3446. 2019-03-27 01:21:35.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
  3447. 2019-03-27 01:21:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3448. 2019-03-27 01:21:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3449. 2019-03-27 01:21:35.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
  3450. 2019-03-27 01:21:35.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3451. 2019-03-27 01:21:35.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3452. 2019-03-27 01:21:35.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
  3453. 2019-03-27 01:21:35.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3454. 2019-03-27 01:21:35.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?)
  3455. 2019-03-27 01:21:35.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
  3456. 2019-03-27 01:21:35.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
  3457. 2019-03-27 01:21:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3458. 2019-03-27 01:21:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450207(String)
  3459. 2019-03-27 01:21:35.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3460. 2019-03-27 01:21:35.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3461. 2019-03-27 01:21:35.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 28
  3462. 2019-03-27 01:21:35.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3463. 2019-03-27 01:21:35.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207023(String)
  3464. 2019-03-27 01:21:35.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3465. 2019-03-27 01:21:35.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3466. 2019-03-27 01:21:35.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -1(Integer)
  3467. 2019-03-27 01:21:35.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3468. 2019-03-27 01:21:35.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3469. 2019-03-27 01:21:35.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3189(Long), 2019-03-25 22:52:30.0(Timestamp)
  3470. 2019-03-27 01:21:35.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3471. 2019-03-27 01:21:35.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3472. 2019-03-27 01:21:35.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3189(Long), 3(Integer), 158(Long), 2019-03-25 22:52:30.0(Timestamp), 2019-03-26 07:55:17.0(Timestamp), -1(Integer), 518285(Long), 李萍(String), 3170(Long)
  3473. 2019-03-27 01:21:35.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3474. 2019-03-27 01:21:35.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3475. 2019-03-27 01:21:35.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -1(Integer)
  3476. 2019-03-27 01:21:35.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3477. 2019-03-27 01:21:35.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3478. 2019-03-27 01:21:35.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3189(Long), 2019-03-25 22:52:30.0(Timestamp)
  3479. 2019-03-27 01:21:35.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3480. 2019-03-27 01:21:35.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3481. 2019-03-27 01:21:35.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207013(String)
  3482. 2019-03-27 01:21:35.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3483. 2019-03-27 01:21:35.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3484. 2019-03-27 01:21:35.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -1(Integer)
  3485. 2019-03-27 01:21:35.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3486. 2019-03-27 01:21:35.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3487. 2019-03-27 01:21:35.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3180(Long), 2019-03-26 07:55:26.0(Timestamp)
  3488. 2019-03-27 01:21:35.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3489. 2019-03-27 01:21:35.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3490. 2019-03-27 01:21:35.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3180(Long), 1(Integer), 158(Long), 2019-03-26 07:55:26.0(Timestamp), 2019-03-26 15:51:03.0(Timestamp), -1(Integer), 518290(Long), 卢健(String), 3170(Long)
  3491. 2019-03-27 01:21:35.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3492. 2019-03-27 01:21:35.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3493. 2019-03-27 01:21:35.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -1(Integer)
  3494. 2019-03-27 01:21:35.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3495. 2019-03-27 01:21:35.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3496. 2019-03-27 01:21:35.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3180(Long), 2019-03-26 07:55:26.0(Timestamp)
  3497. 2019-03-27 01:21:35.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3498. 2019-03-27 01:21:35.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3499. 2019-03-27 01:21:35.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207031(String)
  3500. 2019-03-27 01:21:35.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3501. 2019-03-27 01:21:35.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3502. 2019-03-27 01:21:35.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -1(Integer)
  3503. 2019-03-27 01:21:35.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3504. 2019-03-27 01:21:35.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3505. 2019-03-27 01:21:35.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3195(Long), 2019-03-26 15:51:09.0(Timestamp)
  3506. 2019-03-27 01:21:35.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3507. 2019-03-27 01:21:35.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3508. 2019-03-27 01:21:35.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3195(Long), 2(Integer), 158(Long), 2019-03-26 15:51:09.0(Timestamp), 2019-03-26 22:52:17.0(Timestamp), -1(Integer), 518295(Long), 朱蓉(String), 3170(Long)
  3509. 2019-03-27 01:21:35.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3510. 2019-03-27 01:21:35.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3511. 2019-03-27 01:21:35.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -1(Integer)
  3512. 2019-03-27 01:21:35.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3513. 2019-03-27 01:21:35.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3514. 2019-03-27 01:21:35.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3195(Long), 2019-03-26 15:51:09.0(Timestamp)
  3515. 2019-03-27 01:21:35.736 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3516. 2019-03-27 01:21:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3517. 2019-03-27 01:21:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
  3518. 2019-03-27 01:21:35.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3519. 2019-03-27 01:21:35.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3520. 2019-03-27 01:21:35.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
  3521. 2019-03-27 01:21:35.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3522. 2019-03-27 01:21:35.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3523. 2019-03-27 01:21:35.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
  3524. 2019-03-27 01:21:35.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3525. 2019-03-27 01:21:35.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3526. 2019-03-27 01:21:35.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3187(Long), 3(Integer), 158(Long), 2019-03-25 22:53:58.0(Timestamp), 2019-03-26 07:56:21.0(Timestamp), -2(Integer), 518286(Long), 张燕(String), 3170(Long)
  3527. 2019-03-27 01:21:35.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3528. 2019-03-27 01:21:35.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3529. 2019-03-27 01:21:35.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
  3530. 2019-03-27 01:21:35.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3531. 2019-03-27 01:21:35.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3532. 2019-03-27 01:21:35.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
  3533. 2019-03-27 01:21:35.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3534. 2019-03-27 01:21:35.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3535. 2019-03-27 01:21:35.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
  3536. 2019-03-27 01:21:35.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3537. 2019-03-27 01:21:35.857 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3538. 2019-03-27 01:21:35.857 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
  3539. 2019-03-27 01:21:35.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3540. 2019-03-27 01:21:35.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3541. 2019-03-27 01:21:35.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
  3542. 2019-03-27 01:21:35.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3543. 2019-03-27 01:21:35.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3544. 2019-03-27 01:21:35.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
  3545. 2019-03-27 01:21:35.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3546. 2019-03-27 01:21:35.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3547. 2019-03-27 01:21:35.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
  3548. 2019-03-27 01:21:35.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3549. 2019-03-27 01:21:35.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3550. 2019-03-27 01:21:35.925 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
  3551. 2019-03-27 01:21:35.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3552. 2019-03-27 01:21:35.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3553. 2019-03-27 01:21:35.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3554. 2019-03-27 01:21:35.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3555. 2019-03-27 01:21:35.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3556. 2019-03-27 01:21:35.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
  3557. 2019-03-27 01:21:35.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3558. 2019-03-27 01:21:35.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3559. 2019-03-27 01:21:35.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3185(Long), 1(Integer), 158(Long), 2019-03-26 07:56:27.0(Timestamp), 2019-03-26 15:53:29.0(Timestamp), -2(Integer), 518291(Long), 黄亮(String), 3170(Long)
  3560. 2019-03-27 01:21:36.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3561. 2019-03-27 01:21:36.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3562. 2019-03-27 01:21:36.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
  3563. 2019-03-27 01:21:36.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3564. 2019-03-27 01:21:36.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3565. 2019-03-27 01:21:36.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3566. 2019-03-27 01:21:36.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3567. 2019-03-27 01:21:36.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3568. 2019-03-27 01:21:36.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
  3569. 2019-03-27 01:21:36.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3570. 2019-03-27 01:21:36.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3571. 2019-03-27 01:21:36.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3572. 2019-03-27 01:21:36.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3573. 2019-03-27 01:21:36.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3574. 2019-03-27 01:21:36.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
  3575. 2019-03-27 01:21:36.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3576. 2019-03-27 01:21:36.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3577. 2019-03-27 01:21:36.113 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3578. 2019-03-27 01:21:36.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3579. 2019-03-27 01:21:36.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3580. 2019-03-27 01:21:36.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
  3581. 2019-03-27 01:21:36.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3582. 2019-03-27 01:21:36.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3583. 2019-03-27 01:21:36.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
  3584. 2019-03-27 01:21:36.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3585. 2019-03-27 01:21:36.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3586. 2019-03-27 01:21:36.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3587. 2019-03-27 01:21:36.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3588. 2019-03-27 01:21:36.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3589. 2019-03-27 01:21:36.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
  3590. 2019-03-27 01:21:36.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3591. 2019-03-27 01:21:36.160 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3592. 2019-03-27 01:21:36.160 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3192(Long), 1(Integer), 158(Long), 2019-03-26 15:53:42.0(Timestamp), 2019-03-26 15:53:50.0(Timestamp), -2(Integer), 518291(Long), 王园园(String), 3170(Long)
  3593. 2019-03-27 01:21:36.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3594. 2019-03-27 01:21:36.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3595. 2019-03-27 01:21:36.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
  3596. 2019-03-27 01:21:36.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3597. 2019-03-27 01:21:36.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3598. 2019-03-27 01:21:36.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3599. 2019-03-27 01:21:36.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3600. 2019-03-27 01:21:36.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3601. 2019-03-27 01:21:36.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
  3602. 2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3603. 2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3604. 2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3605. 2019-03-27 01:21:36.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3606. 2019-03-27 01:21:36.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3607. 2019-03-27 01:21:36.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
  3608. 2019-03-27 01:21:36.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3609. 2019-03-27 01:21:36.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3610. 2019-03-27 01:21:36.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
  3611. 2019-03-27 01:21:36.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3612. 2019-03-27 01:21:36.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3613. 2019-03-27 01:21:36.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
  3614. 2019-03-27 01:21:36.311 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3615. 2019-03-27 01:21:36.312 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3616. 2019-03-27 01:21:36.312 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
  3617. 2019-03-27 01:21:36.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3618. 2019-03-27 01:21:36.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3619. 2019-03-27 01:21:36.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
  3620. 2019-03-27 01:21:36.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3621. 2019-03-27 01:21:36.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3622. 2019-03-27 01:21:36.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
  3623. 2019-03-27 01:21:36.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3624. 2019-03-27 01:21:36.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3625. 2019-03-27 01:21:36.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
  3626. 2019-03-27 01:21:36.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3627. 2019-03-27 01:21:36.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3628. 2019-03-27 01:21:36.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
  3629. 2019-03-27 01:21:36.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3630. 2019-03-27 01:21:36.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3631. 2019-03-27 01:21:36.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
  3632. 2019-03-27 01:21:36.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3633. 2019-03-27 01:21:36.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3634. 2019-03-27 01:21:36.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
  3635. 2019-03-27 01:21:36.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3636. 2019-03-27 01:21:36.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3637. 2019-03-27 01:21:36.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
  3638. 2019-03-27 01:21:36.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3639. 2019-03-27 01:21:36.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3640. 2019-03-27 01:21:36.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
  3641. 2019-03-27 01:21:36.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3642. 2019-03-27 01:21:36.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3643. 2019-03-27 01:21:36.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
  3644. 2019-03-27 01:21:36.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3645. 2019-03-27 01:21:36.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3646. 2019-03-27 01:21:36.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207030(String)
  3647. 2019-03-27 01:21:36.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3648. 2019-03-27 01:21:36.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3649. 2019-03-27 01:21:36.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -3(Integer)
  3650. 2019-03-27 01:21:36.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3651. 2019-03-27 01:21:36.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3652. 2019-03-27 01:21:36.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3194(Long), 2019-03-25 22:52:09.0(Timestamp)
  3653. 2019-03-27 01:21:36.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3654. 2019-03-27 01:21:36.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3655. 2019-03-27 01:21:36.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3194(Long), 3(Integer), 158(Long), 2019-03-25 22:52:09.0(Timestamp), 2019-03-26 07:55:32.0(Timestamp), -3(Integer), 518287(Long), 姚佳(String), 3170(Long)
  3656. 2019-03-27 01:21:36.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3657. 2019-03-27 01:21:36.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3658. 2019-03-27 01:21:36.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -3(Integer)
  3659. 2019-03-27 01:21:36.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3660. 2019-03-27 01:21:36.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3661. 2019-03-27 01:21:36.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3194(Long), 2019-03-25 22:52:09.0(Timestamp)
  3662. 2019-03-27 01:21:36.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3663. 2019-03-27 01:21:36.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3664. 2019-03-27 01:21:36.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207011(String)
  3665. 2019-03-27 01:21:36.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3666. 2019-03-27 01:21:36.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3667. 2019-03-27 01:21:36.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -3(Integer)
  3668. 2019-03-27 01:21:36.617 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3669. 2019-03-27 01:21:36.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3670. 2019-03-27 01:21:36.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3178(Long), 2019-03-26 07:55:39.0(Timestamp)
  3671. 2019-03-27 01:21:36.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3672. 2019-03-27 01:21:36.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3673. 2019-03-27 01:21:36.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3178(Long), 1(Integer), 158(Long), 2019-03-26 07:55:39.0(Timestamp), 2019-03-26 15:52:41.0(Timestamp), -3(Integer), 518292(Long), 季琤(String), 3170(Long)
  3674. 2019-03-27 01:21:36.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3675. 2019-03-27 01:21:36.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3676. 2019-03-27 01:21:36.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -3(Integer)
  3677. 2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3678. 2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3679. 2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3178(Long), 2019-03-26 07:55:39.0(Timestamp)
  3680. 2019-03-27 01:21:36.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3681. 2019-03-27 01:21:36.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3682. 2019-03-27 01:21:36.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207022(String)
  3683. 2019-03-27 01:21:36.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3684. 2019-03-27 01:21:36.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3685. 2019-03-27 01:21:36.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -3(Integer)
  3686. 2019-03-27 01:21:36.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3687. 2019-03-27 01:21:36.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3688. 2019-03-27 01:21:36.732 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3188(Long), 2019-03-26 15:52:49.0(Timestamp)
  3689. 2019-03-27 01:21:36.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
  3690. 2019-03-27 01:21:36.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?)
  3691. 2019-03-27 01:21:36.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3188(Long), 2(Integer), 158(Long), 2019-03-26 15:52:49.0(Timestamp), 2019-03-26 22:52:43.0(Timestamp), -3(Integer), 518297(Long), 丁玲(String), 3170(Long)
  3692. 2019-03-27 01:21:36.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
  3693. 2019-03-27 01:21:36.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3694. 2019-03-27 01:21:36.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -3(Integer)
  3695. 2019-03-27 01:21:36.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
  3696. 2019-03-27 01:21:36.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time
  3697. 2019-03-27 01:21:36.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3188(Long), 2019-03-26 15:52:49.0(Timestamp)
  3698. 2019-03-27 01:21:36.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
  3699. 2019-03-27 01:21:36.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3700. 2019-03-27 01:21:36.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
  3701. 2019-03-27 01:21:36.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3702. 2019-03-27 01:21:36.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3703. 2019-03-27 01:21:36.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
  3704. 2019-03-27 01:21:36.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3705. 2019-03-27 01:21:36.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3706. 2019-03-27 01:21:36.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 3(Integer), 159(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3707. 2019-03-27 01:21:36.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3708. 2019-03-27 01:21:36.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3709. 2019-03-27 01:21:36.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
  3710. 2019-03-27 01:21:36.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3711. 2019-03-27 01:21:36.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3712. 2019-03-27 01:21:36.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 1(Integer), 159(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3713. 2019-03-27 01:21:36.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3714. 2019-03-27 01:21:36.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3715. 2019-03-27 01:21:36.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
  3716. 2019-03-27 01:21:36.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3717. 2019-03-27 01:21:36.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3718. 2019-03-27 01:21:36.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 2(Integer), 159(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3719. 2019-03-27 01:21:37.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3720. 2019-03-27 01:21:37.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3721. 2019-03-27 01:21:37.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
  3722. 2019-03-27 01:21:37.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3723. 2019-03-27 01:21:37.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3724. 2019-03-27 01:21:37.038 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010003(String)
  3725. 2019-03-27 01:21:37.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3726. 2019-03-27 01:21:37.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3727. 2019-03-27 01:21:37.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
  3728. 2019-03-27 01:21:37.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3729. 2019-03-27 01:21:37.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010003032(String)
  3730. 2019-03-27 01:21:37.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3731. 2019-03-27 01:21:37.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3732. 2019-03-27 01:21:37.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3(Integer), -1(Integer)
  3733. 2019-03-27 01:21:37.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3734. 2019-03-27 01:21:37.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3735. 2019-03-27 01:21:37.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
  3736. 2019-03-27 01:21:37.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3737. 2019-03-27 01:21:37.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3738. 2019-03-27 01:21:37.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
  3739. 2019-03-27 01:21:37.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3740. 2019-03-27 01:21:37.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3741. 2019-03-27 01:21:37.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 3(Integer), 160(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3742. 2019-03-27 01:21:37.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3743. 2019-03-27 01:21:37.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3744. 2019-03-27 01:21:37.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
  3745. 2019-03-27 01:21:37.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3746. 2019-03-27 01:21:37.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3747. 2019-03-27 01:21:37.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 1(Integer), 160(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3748. 2019-03-27 01:21:37.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3749. 2019-03-27 01:21:37.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3750. 2019-03-27 01:21:37.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
  3751. 2019-03-27 01:21:37.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3752. 2019-03-27 01:21:37.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3753. 2019-03-27 01:21:37.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 2(Integer), 160(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3754. 2019-03-27 01:21:37.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3755. 2019-03-27 01:21:37.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3756. 2019-03-27 01:21:37.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
  3757. 2019-03-27 01:21:37.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3758. 2019-03-27 01:21:37.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3759. 2019-03-27 01:21:37.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010009(String)
  3760. 2019-03-27 01:21:37.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3761. 2019-03-27 01:21:37.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3762. 2019-03-27 01:21:37.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 32
  3763. 2019-03-27 01:21:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3764. 2019-03-27 01:21:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010009022(String)
  3765. 2019-03-27 01:21:37.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3766. 2019-03-27 01:21:37.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3767. 2019-03-27 01:21:37.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 1(Integer), -3(Integer)
  3768. 2019-03-27 01:21:37.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3769. 2019-03-27 01:21:37.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3770. 2019-03-27 01:21:37.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
  3771. 2019-03-27 01:21:37.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3772. 2019-03-27 01:21:37.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3773. 2019-03-27 01:21:37.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
  3774. 2019-03-27 01:21:37.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3775. 2019-03-27 01:21:37.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3776. 2019-03-27 01:21:37.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 3(Integer), 161(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3777. 2019-03-27 01:21:37.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3778. 2019-03-27 01:21:37.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3779. 2019-03-27 01:21:37.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
  3780. 2019-03-27 01:21:37.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3781. 2019-03-27 01:21:37.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3782. 2019-03-27 01:21:37.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 1(Integer), 161(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3783. 2019-03-27 01:21:37.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3784. 2019-03-27 01:21:37.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3785. 2019-03-27 01:21:37.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
  3786. 2019-03-27 01:21:37.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3787. 2019-03-27 01:21:37.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3788. 2019-03-27 01:21:37.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 2(Integer), 161(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3789. 2019-03-27 01:21:37.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3790. 2019-03-27 01:21:37.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3791. 2019-03-27 01:21:37.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
  3792. 2019-03-27 01:21:37.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3793. 2019-03-27 01:21:37.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3794. 2019-03-27 01:21:37.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010008(String)
  3795. 2019-03-27 01:21:37.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3796. 2019-03-27 01:21:37.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3797. 2019-03-27 01:21:37.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 42
  3798. 2019-03-27 01:21:37.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3799. 2019-03-27 01:21:37.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010008019(String)
  3800. 2019-03-27 01:21:37.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3801. 2019-03-27 01:21:37.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3802. 2019-03-27 01:21:37.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3(Integer), -1(Integer)
  3803. 2019-03-27 01:21:37.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3804. 2019-03-27 01:21:37.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3805. 2019-03-27 01:21:37.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
  3806. 2019-03-27 01:21:37.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3807. 2019-03-27 01:21:37.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3808. 2019-03-27 01:21:37.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
  3809. 2019-03-27 01:21:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3810. 2019-03-27 01:21:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3811. 2019-03-27 01:21:37.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 3(Integer), 162(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3812. 2019-03-27 01:21:37.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3813. 2019-03-27 01:21:37.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3814. 2019-03-27 01:21:37.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
  3815. 2019-03-27 01:21:37.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3816. 2019-03-27 01:21:37.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3817. 2019-03-27 01:21:37.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 1(Integer), 162(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3818. 2019-03-27 01:21:37.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3819. 2019-03-27 01:21:37.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3820. 2019-03-27 01:21:37.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
  3821. 2019-03-27 01:21:37.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3822. 2019-03-27 01:21:37.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3823. 2019-03-27 01:21:37.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 2(Integer), 162(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3824. 2019-03-27 01:21:38.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3825. 2019-03-27 01:21:38.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3826. 2019-03-27 01:21:38.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
  3827. 2019-03-27 01:21:38.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3828. 2019-03-27 01:21:38.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3829. 2019-03-27 01:21:38.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010001(String)
  3830. 2019-03-27 01:21:38.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3831. 2019-03-27 01:21:38.056 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3832. 2019-03-27 01:21:38.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
  3833. 2019-03-27 01:21:38.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3834. 2019-03-27 01:21:38.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010001014(String)
  3835. 2019-03-27 01:21:38.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3836. 2019-03-27 01:21:38.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3837. 2019-03-27 01:21:38.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3(Integer), -1(Integer)
  3838. 2019-03-27 01:21:38.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3839. 2019-03-27 01:21:38.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3840. 2019-03-27 01:21:38.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
  3841. 2019-03-27 01:21:38.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3842. 2019-03-27 01:21:38.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3843. 2019-03-27 01:21:38.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
  3844. 2019-03-27 01:21:38.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3845. 2019-03-27 01:21:38.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3846. 2019-03-27 01:21:38.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 3(Integer), 163(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3847. 2019-03-27 01:21:38.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3848. 2019-03-27 01:21:38.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3849. 2019-03-27 01:21:38.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
  3850. 2019-03-27 01:21:38.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3851. 2019-03-27 01:21:38.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3852. 2019-03-27 01:21:38.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 1(Integer), 163(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3853. 2019-03-27 01:21:38.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3854. 2019-03-27 01:21:38.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3855. 2019-03-27 01:21:38.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
  3856. 2019-03-27 01:21:38.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3857. 2019-03-27 01:21:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3858. 2019-03-27 01:21:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 2(Integer), 163(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3859. 2019-03-27 01:21:38.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3860. 2019-03-27 01:21:38.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3861. 2019-03-27 01:21:38.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
  3862. 2019-03-27 01:21:38.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3863. 2019-03-27 01:21:38.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3864. 2019-03-27 01:21:38.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010002(String)
  3865. 2019-03-27 01:21:38.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3866. 2019-03-27 01:21:38.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3867. 2019-03-27 01:21:38.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 42
  3868. 2019-03-27 01:21:38.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3869. 2019-03-27 01:21:38.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010002011(String)
  3870. 2019-03-27 01:21:38.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3871. 2019-03-27 01:21:38.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3872. 2019-03-27 01:21:38.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3(Integer), -1(Integer)
  3873. 2019-03-27 01:21:38.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3874. 2019-03-27 01:21:38.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3875. 2019-03-27 01:21:38.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
  3876. 2019-03-27 01:21:38.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3877. 2019-03-27 01:21:38.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3878. 2019-03-27 01:21:38.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
  3879. 2019-03-27 01:21:38.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3880. 2019-03-27 01:21:38.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3881. 2019-03-27 01:21:38.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 3(Integer), 164(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3882. 2019-03-27 01:21:38.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3883. 2019-03-27 01:21:38.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3884. 2019-03-27 01:21:38.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
  3885. 2019-03-27 01:21:38.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3886. 2019-03-27 01:21:38.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3887. 2019-03-27 01:21:38.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 1(Integer), 164(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3888. 2019-03-27 01:21:38.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3889. 2019-03-27 01:21:38.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3890. 2019-03-27 01:21:38.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
  3891. 2019-03-27 01:21:38.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3892. 2019-03-27 01:21:38.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3893. 2019-03-27 01:21:38.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 2(Integer), 164(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3894. 2019-03-27 01:21:38.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3895. 2019-03-27 01:21:38.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3896. 2019-03-27 01:21:38.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
  3897. 2019-03-27 01:21:38.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3898. 2019-03-27 01:21:38.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3899. 2019-03-27 01:21:38.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010006(String)
  3900. 2019-03-27 01:21:38.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3901. 2019-03-27 01:21:38.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3902. 2019-03-27 01:21:38.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
  3903. 2019-03-27 01:21:38.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3904. 2019-03-27 01:21:38.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010006011(String)
  3905. 2019-03-27 01:21:38.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3906. 2019-03-27 01:21:38.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3907. 2019-03-27 01:21:38.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3(Integer), -1(Integer)
  3908. 2019-03-27 01:21:38.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3909. 2019-03-27 01:21:38.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3910. 2019-03-27 01:21:38.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
  3911. 2019-03-27 01:21:38.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  3912. 2019-03-27 01:21:38.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3913. 2019-03-27 01:21:38.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
  3914. 2019-03-27 01:21:38.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  3915. 2019-03-27 01:21:38.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3916. 2019-03-27 01:21:38.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450205(String)
  3917. 2019-03-27 01:21:38.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3918. 2019-03-27 01:21:38.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3919. 2019-03-27 01:21:38.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 43
  3920. 2019-03-27 01:21:38.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3921. 2019-03-27 01:21:38.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450205013(String)
  3922. 2019-03-27 01:21:38.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3923. 2019-03-27 01:21:39.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3924. 2019-03-27 01:21:39.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
  3925. 2019-03-27 01:21:39.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3926. 2019-03-27 01:21:39.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3927. 2019-03-27 01:21:39.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
  3928. 2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3929. 2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3930. 2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 3(Integer), 165(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3931. 2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3932. 2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3933. 2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
  3934. 2019-03-27 01:21:39.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3935. 2019-03-27 01:21:39.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3936. 2019-03-27 01:21:39.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 1(Integer), 165(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3937. 2019-03-27 01:21:39.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3938. 2019-03-27 01:21:39.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3939. 2019-03-27 01:21:39.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
  3940. 2019-03-27 01:21:39.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3941. 2019-03-27 01:21:39.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3942. 2019-03-27 01:21:39.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 2(Integer), 165(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3943. 2019-03-27 01:21:39.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3944. 2019-03-27 01:21:39.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3945. 2019-03-27 01:21:39.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
  3946. 2019-03-27 01:21:39.216 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3947. 2019-03-27 01:21:39.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3948. 2019-03-27 01:21:39.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450204(String)
  3949. 2019-03-27 01:21:39.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3950. 2019-03-27 01:21:39.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3951. 2019-03-27 01:21:39.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
  3952. 2019-03-27 01:21:39.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3953. 2019-03-27 01:21:39.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450204011(String)
  3954. 2019-03-27 01:21:39.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3955. 2019-03-27 01:21:39.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3956. 2019-03-27 01:21:39.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3(Integer), -1(Integer)
  3957. 2019-03-27 01:21:39.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3958. 2019-03-27 01:21:39.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3959. 2019-03-27 01:21:39.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
  3960. 2019-03-27 01:21:39.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3961. 2019-03-27 01:21:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3962. 2019-03-27 01:21:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
  3963. 2019-03-27 01:21:39.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  3964. 2019-03-27 01:21:39.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3965. 2019-03-27 01:21:39.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 3(Integer), 166(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  3966. 2019-03-27 01:21:39.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3967. 2019-03-27 01:21:39.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3968. 2019-03-27 01:21:39.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
  3969. 2019-03-27 01:21:39.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3970. 2019-03-27 01:21:39.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3971. 2019-03-27 01:21:39.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 1(Integer), 166(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  3972. 2019-03-27 01:21:39.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3973. 2019-03-27 01:21:39.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3974. 2019-03-27 01:21:39.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
  3975. 2019-03-27 01:21:39.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3976. 2019-03-27 01:21:39.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  3977. 2019-03-27 01:21:39.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 2(Integer), 166(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  3978. 2019-03-27 01:21:39.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  3979. 2019-03-27 01:21:39.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  3980. 2019-03-27 01:21:39.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
  3981. 2019-03-27 01:21:39.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  3982. 2019-03-27 01:21:39.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  3983. 2019-03-27 01:21:39.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450206(String)
  3984. 2019-03-27 01:21:39.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  3985. 2019-03-27 01:21:39.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  3986. 2019-03-27 01:21:39.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
  3987. 2019-03-27 01:21:39.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  3988. 2019-03-27 01:21:39.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450206014(String)
  3989. 2019-03-27 01:21:39.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  3990. 2019-03-27 01:21:39.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  3991. 2019-03-27 01:21:39.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3(Integer), -2(Integer)
  3992. 2019-03-27 01:21:39.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  3993. 2019-03-27 01:21:39.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3994. 2019-03-27 01:21:39.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
  3995. 2019-03-27 01:21:39.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  3996. 2019-03-27 01:21:39.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  3997. 2019-03-27 01:21:39.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
  3998. 2019-03-27 01:21:39.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  3999. 2019-03-27 01:21:39.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4000. 2019-03-27 01:21:39.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450105(String)
  4001. 2019-03-27 01:21:39.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4002. 2019-03-27 01:21:39.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4003. 2019-03-27 01:21:39.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
  4004. 2019-03-27 01:21:39.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4005. 2019-03-27 01:21:39.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
  4006. 2019-03-27 01:21:39.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4007. 2019-03-27 01:21:39.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4008. 2019-03-27 01:21:39.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
  4009. 2019-03-27 01:21:39.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4010. 2019-03-27 01:21:39.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4011. 2019-03-27 01:21:39.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
  4012. 2019-03-27 01:21:39.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4013. 2019-03-27 01:21:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4014. 2019-03-27 01:21:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 3(Integer), 167(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4015. 2019-03-27 01:21:39.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4016. 2019-03-27 01:21:39.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4017. 2019-03-27 01:21:39.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
  4018. 2019-03-27 01:21:39.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4019. 2019-03-27 01:21:39.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4020. 2019-03-27 01:21:39.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 1(Integer), 167(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4021. 2019-03-27 01:21:39.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4022. 2019-03-27 01:21:39.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4023. 2019-03-27 01:21:39.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
  4024. 2019-03-27 01:21:39.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4025. 2019-03-27 01:21:39.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4026. 2019-03-27 01:21:39.899 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 2(Integer), 167(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4027. 2019-03-27 01:21:39.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4028. 2019-03-27 01:21:39.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4029. 2019-03-27 01:21:39.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
  4030. 2019-03-27 01:21:39.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4031. 2019-03-27 01:21:39.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4032. 2019-03-27 01:21:39.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010007(String)
  4033. 2019-03-27 01:21:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4034. 2019-03-27 01:21:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4035. 2019-03-27 01:21:40.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 26
  4036. 2019-03-27 01:21:40.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4037. 2019-03-27 01:21:40.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010007020(String)
  4038. 2019-03-27 01:21:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4039. 2019-03-27 01:21:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4040. 2019-03-27 01:21:40.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 2(Integer), -1(Integer)
  4041. 2019-03-27 01:21:40.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4042. 2019-03-27 01:21:40.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4043. 2019-03-27 01:21:40.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
  4044. 2019-03-27 01:21:40.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4045. 2019-03-27 01:21:40.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4046. 2019-03-27 01:21:40.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
  4047. 2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4048. 2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4049. 2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 3(Integer), 168(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4050. 2019-03-27 01:21:40.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4051. 2019-03-27 01:21:40.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4052. 2019-03-27 01:21:40.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
  4053. 2019-03-27 01:21:40.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4054. 2019-03-27 01:21:40.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4055. 2019-03-27 01:21:40.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 1(Integer), 168(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4056. 2019-03-27 01:21:40.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4057. 2019-03-27 01:21:40.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4058. 2019-03-27 01:21:40.211 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
  4059. 2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4060. 2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4061. 2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 2(Integer), 168(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4062. 2019-03-27 01:21:40.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4063. 2019-03-27 01:21:40.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4064. 2019-03-27 01:21:40.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
  4065. 2019-03-27 01:21:40.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4066. 2019-03-27 01:21:40.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4067. 2019-03-27 01:21:40.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450208(String)
  4068. 2019-03-27 01:21:40.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4069. 2019-03-27 01:21:40.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4070. 2019-03-27 01:21:40.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 30
  4071. 2019-03-27 01:21:40.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4072. 2019-03-27 01:21:40.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450208017(String)
  4073. 2019-03-27 01:21:40.405 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4074. 2019-03-27 01:21:40.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4075. 2019-03-27 01:21:40.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3(Integer), -1(Integer)
  4076. 2019-03-27 01:21:40.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4077. 2019-03-27 01:21:40.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4078. 2019-03-27 01:21:40.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
  4079. 2019-03-27 01:21:40.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4080. 2019-03-27 01:21:40.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4081. 2019-03-27 01:21:40.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
  4082. 2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4083. 2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4084. 2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 3(Integer), 169(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4085. 2019-03-27 01:21:40.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4086. 2019-03-27 01:21:40.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4087. 2019-03-27 01:21:40.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
  4088. 2019-03-27 01:21:40.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4089. 2019-03-27 01:21:40.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4090. 2019-03-27 01:21:40.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 1(Integer), 169(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4091. 2019-03-27 01:21:40.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4092. 2019-03-27 01:21:40.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4093. 2019-03-27 01:21:40.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
  4094. 2019-03-27 01:21:40.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4095. 2019-03-27 01:21:40.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4096. 2019-03-27 01:21:40.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 2(Integer), 169(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4097. 2019-03-27 01:21:40.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4098. 2019-03-27 01:21:40.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4099. 2019-03-27 01:21:40.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
  4100. 2019-03-27 01:21:40.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4101. 2019-03-27 01:21:40.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4102. 2019-03-27 01:21:40.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010005(String)
  4103. 2019-03-27 01:21:40.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4104. 2019-03-27 01:21:40.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4105. 2019-03-27 01:21:40.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 48
  4106. 2019-03-27 01:21:40.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4107. 2019-03-27 01:21:40.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010005014(String)
  4108. 2019-03-27 01:21:40.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4109. 2019-03-27 01:21:40.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4110. 2019-03-27 01:21:40.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3(Integer), -2(Integer)
  4111. 2019-03-27 01:21:40.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4112. 2019-03-27 01:21:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4113. 2019-03-27 01:21:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
  4114. 2019-03-27 01:21:40.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4115. 2019-03-27 01:21:40.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4116. 2019-03-27 01:21:40.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
  4117. 2019-03-27 01:21:40.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4118. 2019-03-27 01:21:40.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4119. 2019-03-27 01:21:40.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 3(Integer), 172(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4120. 2019-03-27 01:21:40.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4121. 2019-03-27 01:21:40.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4122. 2019-03-27 01:21:40.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
  4123. 2019-03-27 01:21:40.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4124. 2019-03-27 01:21:40.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4125. 2019-03-27 01:21:40.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 1(Integer), 172(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4126. 2019-03-27 01:21:40.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4127. 2019-03-27 01:21:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4128. 2019-03-27 01:21:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
  4129. 2019-03-27 01:21:40.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4130. 2019-03-27 01:21:40.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4131. 2019-03-27 01:21:40.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 2(Integer), 172(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4132. 2019-03-27 01:21:40.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4133. 2019-03-27 01:21:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4134. 2019-03-27 01:21:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
  4135. 2019-03-27 01:21:40.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4136. 2019-03-27 01:21:40.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4137. 2019-03-27 01:21:40.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010004(String)
  4138. 2019-03-27 01:21:41.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4139. 2019-03-27 01:21:41.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4140. 2019-03-27 01:21:41.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
  4141. 2019-03-27 01:21:41.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4142. 2019-03-27 01:21:41.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010004017(String)
  4143. 2019-03-27 01:21:41.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4144. 2019-03-27 01:21:41.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4145. 2019-03-27 01:21:41.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3(Integer), -2(Integer)
  4146. 2019-03-27 01:21:41.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4147. 2019-03-27 01:21:41.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4148. 2019-03-27 01:21:41.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
  4149. 2019-03-27 01:21:41.113 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4150. 2019-03-27 01:21:41.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4151. 2019-03-27 01:21:41.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
  4152. 2019-03-27 01:21:41.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4153. 2019-03-27 01:21:41.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4154. 2019-03-27 01:21:41.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 3(Integer), 170(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4155. 2019-03-27 01:21:41.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4156. 2019-03-27 01:21:41.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4157. 2019-03-27 01:21:41.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
  4158. 2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4159. 2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4160. 2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 1(Integer), 170(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4161. 2019-03-27 01:21:41.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4162. 2019-03-27 01:21:41.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4163. 2019-03-27 01:21:41.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
  4164. 2019-03-27 01:21:41.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4165. 2019-03-27 01:21:41.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4166. 2019-03-27 01:21:41.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 2(Integer), 170(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4167. 2019-03-27 01:21:41.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4168. 2019-03-27 01:21:41.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4169. 2019-03-27 01:21:41.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
  4170. 2019-03-27 01:21:41.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4171. 2019-03-27 01:21:41.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4172. 2019-03-27 01:21:41.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230001(String)
  4173. 2019-03-27 01:21:41.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4174. 2019-03-27 01:21:41.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4175. 2019-03-27 01:21:41.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 69
  4176. 2019-03-27 01:21:41.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4177. 2019-03-27 01:21:41.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230001012(String)
  4178. 2019-03-27 01:21:41.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4179. 2019-03-27 01:21:41.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4180. 2019-03-27 01:21:41.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 1(Integer), -2(Integer)
  4181. 2019-03-27 01:21:41.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4182. 2019-03-27 01:21:41.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4183. 2019-03-27 01:21:41.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
  4184. 2019-03-27 01:21:41.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  4185. 2019-03-27 01:21:41.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4186. 2019-03-27 01:21:41.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
  4187. 2019-03-27 01:21:41.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
  4188. 2019-03-27 01:21:41.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4189. 2019-03-27 01:21:41.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230003(String)
  4190. 2019-03-27 01:21:41.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4191. 2019-03-27 01:21:41.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4192. 2019-03-27 01:21:41.536 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
  4193. 2019-03-27 01:21:41.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4194. 2019-03-27 01:21:41.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230003005(String)
  4195. 2019-03-27 01:21:41.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4196. 2019-03-27 01:21:41.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4197. 2019-03-27 01:21:41.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
  4198. 2019-03-27 01:21:41.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4199. 2019-03-27 01:21:41.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Preparing: SELECT * FROM sys_team WHERE dept_id = ?
  4200. 2019-03-27 01:21:41.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
  4201. 2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
  4202. 2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4203. 2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 3(Integer), 171(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
  4204. 2019-03-27 01:21:41.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4205. 2019-03-27 01:21:41.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4206. 2019-03-27 01:21:41.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
  4207. 2019-03-27 01:21:41.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4208. 2019-03-27 01:21:41.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4209. 2019-03-27 01:21:41.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 1(Integer), 171(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
  4210. 2019-03-27 01:21:41.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4211. 2019-03-27 01:21:41.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4212. 2019-03-27 01:21:41.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
  4213. 2019-03-27 01:21:41.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4214. 2019-03-27 01:21:41.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4215. 2019-03-27 01:21:41.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 2(Integer), 171(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
  4216. 2019-03-27 01:21:41.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4217. 2019-03-27 01:21:41.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ?
  4218. 2019-03-27 01:21:41.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
  4219. 2019-03-27 01:21:41.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
  4220. 2019-03-27 01:21:41.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Preparing: call SP_OUTTER_OFFWORKLIST (?,?);
  4221. 2019-03-27 01:21:41.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230002(String)
  4222. 2019-03-27 01:21:41.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
  4223. 2019-03-27 01:21:41.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
  4224. 2019-03-27 01:21:41.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 24
  4225. 2019-03-27 01:21:41.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4226. 2019-03-27 01:21:41.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230002011(String)
  4227. 2019-03-27 01:21:41.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4228. 2019-03-27 01:21:41.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ?
  4229. 2019-03-27 01:21:41.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3(Integer), -3(Integer)
  4230. 2019-03-27 01:21:41.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
  4231. 2019-03-27 01:21:41.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  4232. 2019-03-27 01:21:41.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
  4233. 2019-03-27 01:21:41.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  4234. 2019-03-27 01:21:41.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4235. 2019-03-27 01:21:41.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 3(Integer), 152(Long), 2019-03-26 23:00:00.0(Timestamp), 2019-03-27 08:00:00.0(Timestamp)
  4236. 2019-03-27 01:21:41.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4237. 2019-03-27 01:21:41.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  4238. 2019-03-27 01:21:41.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
  4239. 2019-03-27 01:21:41.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  4240. 2019-03-27 01:21:41.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4241. 2019-03-27 01:21:41.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 1(Integer), 152(Long), 2019-03-27 08:00:00.0(Timestamp), 2019-03-27 15:00:00.0(Timestamp)
  4242. 2019-03-27 01:21:41.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4243. 2019-03-27 01:21:41.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Preparing: SELECT * FROM sys_team WHERE id = ?
  4244. 2019-03-27 01:21:41.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
  4245. 2019-03-27 01:21:42.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
  4246. 2019-03-27 01:21:42.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?)
  4247. 2019-03-27 01:21:42.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 2(Integer), 152(Long), 2019-03-27 15:00:00.0(Timestamp), 2019-03-27 23:00:00.0(Timestamp)
  4248. 2019-03-27 01:21:42.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
  4249. 2019-03-27 01:21:42.098 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  4250. 2019-03-27 01:21:42.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  4251. 2019-03-27 01:21:42.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
  4252. 2019-03-27 01:21:42.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  4253. 2019-03-27 01:21:42.107 |-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
  4254. 2019-03-27 01:21:42.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
  4255. 2019-03-27 01:21:42.117 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
  4256. 2019-03-27 01:21:42.118 |-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=?)
  4257. 2019-03-27 01:21:42.118 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
  4258. 2019-03-27 01:21:42.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  4259. 2019-03-27 01:21:42.134 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
  4260. 2019-03-27 01:21:42.135 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
  4261. 2019-03-27 01:21:42.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC
  4262. 2019-03-27 01:21:42.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-01 00:00:00.0(Timestamp), 2019-03-31 23:59:59.0(Timestamp), 1(Integer)
  4263. 2019-03-27 01:21:42.147 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 9