| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263 |
- 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)
- 2019-03-27 01:20:08.205 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
- 2019-03-27 01:20:08.508 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
- 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
- 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!
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 2019-03-27 01:20:15.465 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
- 2019-03-27 01:20:15.485 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
- 2019-03-27 01:20:15.487 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
- 2019-03-27 01:20:15.728 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
- 2019-03-27 01:20:15.729 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 7196 ms
- 2019-03-27 01:20:16.356 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
- 2019-03-27 01:20:19.781 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
- 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
- 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
- 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
- 2019-03-27 01:20:19.782 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
- 2019-03-27 01:20:19.784 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
- 2019-03-27 01:20:19.784 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
- 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
- 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
- 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
- 2019-03-27 01:20:19.785 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
- 2019-03-27 01:20:19.786 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
- 2019-03-27 01:20:19.786 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
- 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/*]
- 2019-03-27 01:20:21.443 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService
- 2019-03-27 01:20:21.452 |-INFO [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 'threadExecutor'
- 2019-03-27 01:20:21.705 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
- 2019-03-27 01:20:21.705 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
- 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]
- 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]
- 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
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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()
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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()
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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>)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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()
- 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)
- 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
- 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)
- 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)
- 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)
- 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()
- 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()
- 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()
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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
- 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)
- 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)
- 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)
- 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)
- 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)
- 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
- 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
- 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()
- 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)
- 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)
- 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
- 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
- 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)
- 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
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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()
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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()
- 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)
- 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()
- 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()
- 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()
- 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()
- 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()
- 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()
- 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)
- 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>)
- 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>)
- 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)
- 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)
- 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()
- 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
- 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)
- 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()
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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)
- 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]
- 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]
- 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]
- 2019-03-27 01:20:22.532 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
- 2019-03-27 01:20:22.533 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
- 2019-03-27 01:20:22.534 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
- 2019-03-27 01:20:22.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
- 2019-03-27 01:20:22.536 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
- 2019-03-27 01:20:22.537 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
- 2019-03-27 01:20:22.538 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
- 2019-03-27 01:20:22.538 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
- 2019-03-27 01:20:22.539 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
- 2019-03-27 01:20:22.540 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
- 2019-03-27 01:20:22.540 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
- 2019-03-27 01:20:22.541 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
- 2019-03-27 01:20:22.541 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
- 2019-03-27 01:20:22.542 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
- 2019-03-27 01:20:22.542 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
- 2019-03-27 01:20:22.544 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
- 2019-03-27 01:20:22.545 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
- 2019-03-27 01:20:22.546 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
- 2019-03-27 01:20:22.547 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
- 2019-03-27 01:20:22.548 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
- 2019-03-27 01:20:22.549 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
- 2019-03-27 01:20:22.549 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
- 2019-03-27 01:20:22.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
- 2019-03-27 01:20:22.550 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
- 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]
- 2019-03-27 01:20:23.587 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
- 2019-03-27 01:20:23.588 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
- 2019-03-27 01:20:23.589 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
- 2019-03-27 01:20:24.632 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
- 2019-03-27 01:20:24.638 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
- 2019-03-27 01:20:24.657 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
- 2019-03-27 01:20:24.662 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
- 2019-03-27 01:20:24.663 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
- 2019-03-27 01:20:24.664 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
- 2019-03-27 01:20:24.665 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
- 2019-03-27 01:20:24.666 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
- 2019-03-27 01:20:24.668 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
- 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
- 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
- 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
- 2019-03-27 01:20:24.670 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
- 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
- 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
- 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
- 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
- 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
- 2019-03-27 01:20:24.684 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
- 2019-03-27 01:20:24.696 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
- 2019-03-27 01:20:24.698 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
- 2019-03-27 01:20:24.698 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
- 2019-03-27 01:20:24.706 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
- 2019-03-27 01:20:24.747 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
- 2019-03-27 01:20:25.712 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
- 2019-03-27 01:20:25.762 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
- 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
- 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
- 2019-03-27 01:20:25.786 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
- 2019-03-27 01:20:25.787 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
- 2019-03-27 01:20:25.787 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
- 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)
- 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()
- 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)
- 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()
- 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()
- 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)
- 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>)
- 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()
- 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)
- 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()
- 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)
- 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()
- 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()
- 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
- 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()
- 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()
- 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()
- 2019-03-27 01:20:27.018 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
- 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
- 2019-03-27 01:20:27.271 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
- 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
- 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
- 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
- 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]
- 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]
- 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]
- 2019-03-27 01:20:27.285 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
- 2019-03-27 01:20:27.290 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 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]
- 2019-03-27 01:20:27.399 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
- 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
- 2019-03-27 01:20:27.688 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
- 2019-03-27 01:20:27.721 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 95
- 2019-03-27 01:20:27.722 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
- 2019-03-27 01:20:27.725 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
- 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
- 2019-03-27 01:20:27.812 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
- 2019-03-27 01:20:27.890 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 681
- 2019-03-27 01:20:27.891 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:681
- 2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
- 2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
- 2019-03-27 01:20:27.902 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 34
- 2019-03-27 01:20:27.902 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:34
- 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=?
- 2019-03-27 01:20:28.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
- 2019-03-27 01:20:28.085 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 2019-03-27 01:20:28.085 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:681
- 2019-03-27 01:20:28.100 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
- 2019-03-27 01:20:28.111 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
- 2019-03-27 01:20:28.122 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
- 2019-03-27 01:20:28.139 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
- 2019-03-27 01:20:28.145 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 20.273 seconds (JVM running for 23.84)
- 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
- 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'
- 2019-03-27 01:20:55.610 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
- 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
- 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
- 2019-03-27 01:20:55.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:55.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:55.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:55.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:55.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:55.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:55.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:55.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:55.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:55.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:55.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:55.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.341 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:56.367 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:56.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:56.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 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
- 2019-03-27 01:20:56.378 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:56.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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
- 2019-03-27 01:20:56.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 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=?)
- 2019-03-27 01:20:56.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 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
- 2019-03-27 01:20:56.423 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:20:56.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:56.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:56.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 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
- 2019-03-27 01:20:56.448 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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
- 2019-03-27 01:20:56.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 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=?)
- 2019-03-27 01:20:56.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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
- 2019-03-27 01:20:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
- 2019-03-27 01:20:56.473 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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=?)
- 2019-03-27 01:20:56.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 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
- 2019-03-27 01:20:56.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 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=?)
- 2019-03-27 01:20:56.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.480 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:56.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:20:56.490 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:56.499 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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 = ?
- 2019-03-27 01:20:56.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
- 2019-03-27 01:20:56.512 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
- 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
- 2019-03-27 01:20:56.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
- 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
- 2019-03-27 01:20:56.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
- 2019-03-27 01:20:56.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
- 2019-03-27 01:20:56.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 79
- 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
- 2019-03-27 01:20:56.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:56.619 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 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
- 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:56.630 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 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
- 2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.633 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:20:56.645 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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
- 2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 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=?)
- 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=?)
- 2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:20:56.981 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:56.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:56.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 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
- 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
- 2019-03-27 01:20:57.012 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:57.012 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 2019-03-27 01:20:57.013 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 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
- 2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
- 2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
- 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
- 2019-03-27 01:20:57.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
- 2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
- 2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
- 2019-03-27 01:20:57.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
- 2019-03-27 01:20:57.054 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:57.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:57.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.068 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.079 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:57.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.095 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 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)
- 2019-03-27 01:20:57.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 591
- 2019-03-27 01:20:57.234 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:57.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:57.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:57.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.274 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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=?
- 2019-03-27 01:20:57.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
- 2019-03-27 01:20:57.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 2019-03-27 01:20:57.444 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:57.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:57.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:57.476 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:57.482 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 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)
- 2019-03-27 01:20:57.570 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
- 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 ?,?
- 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)
- 2019-03-27 01:20:57.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
- 2019-03-27 01:20:59.527 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:20:59.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
- 2019-03-27 01:20:59.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:59.552 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:59.579 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 69
- 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=?)
- 2019-03-27 01:20:59.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
- 2019-03-27 01:20:59.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:20:59.594 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
- 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
- 2019-03-27 01:21:03.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.217 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.227 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.234 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.268 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.435 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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
- 2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 2019-03-27 01:21:03.438 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.440 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 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
- 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
- 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
- 2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:03.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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
- 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=?)
- 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=?)
- 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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=?)
- 2019-03-27 01:21:03.472 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 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
- 2019-03-27 01:21:03.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 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
- 2019-03-27 01:21:03.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.474 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.476 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
- 2019-03-27 01:21:03.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 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
- 2019-03-27 01:21:03.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.484 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.484 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
- 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
- 2019-03-27 01:21:03.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 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 = ?
- 2019-03-27 01:21:03.490 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
- 2019-03-27 01:21:03.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
- 2019-03-27 01:21:03.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.497 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
- 2019-03-27 01:21:03.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
- 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
- 2019-03-27 01:21:03.500 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 79
- 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
- 2019-03-27 01:21:03.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.521 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:03.557 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.558 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.558 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:03.560 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 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
- 2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.570 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.572 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.585 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:03.586 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 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=?)
- 2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:03.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:03.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:03.598 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.600 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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
- 2019-03-27 01:21:03.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters:
- 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
- 2019-03-27 01:21:03.603 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:03.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
- 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
- 2019-03-27 01:21:03.604 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
- 2019-03-27 01:21:03.611 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <== Total: 5
- 2019-03-27 01:21:03.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
- 2019-03-27 01:21:03.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 22
- 2019-03-27 01:21:03.625 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:03.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.653 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.658 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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)
- 2019-03-27 01:21:03.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 591
- 2019-03-27 01:21:03.752 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.762 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.773 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.782 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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=?
- 2019-03-27 01:21:03.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
- 2019-03-27 01:21:03.793 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 2019-03-27 01:21:03.892 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:03.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:03.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.905 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.915 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:03.917 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:03.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:03.931 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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)
- 2019-03-27 01:21:03.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <== Total: 1
- 2019-03-27 01:21:05.666 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:05.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:05.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:05.679 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:05.679 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 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
- 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
- 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:05.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:05.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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=?)
- 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 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
- 2019-03-27 01:21:05.705 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:05.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters:
- 2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:05.716 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:05.716 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:05.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 23
- 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 = ?
- 2019-03-27 01:21:05.721 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
- 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
- 2019-03-27 01:21:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters:
- 2019-03-27 01:21:05.729 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <== Total: 10
- 2019-03-27 01:21:05.730 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 32
- 2019-03-27 01:21:08.529 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:08.529 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 2019-03-27 01:21:08.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:08.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 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
- 2019-03-27 01:21:08.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 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=?)
- 2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:08.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:08.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:08.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.566 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:08.568 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:08.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 46(Integer)
- 2019-03-27 01:21:08.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 21
- 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
- 2019-03-27 01:21:08.581 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 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 = ?
- 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)
- 2019-03-27 01:21:08.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <== Total: 1
- 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 ?,?
- 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)
- 2019-03-27 01:21:08.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| <== Total: 1
- 2019-03-27 01:21:08.610 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3112(Integer)
- 2019-03-27 01:21:08.623 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.625 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3112(Integer)
- 2019-03-27 01:21:08.632 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.633 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3113(Integer)
- 2019-03-27 01:21:08.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
- 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=?)
- 2019-03-27 01:21:08.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3113(Integer)
- 2019-03-27 01:21:08.656 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2637(Integer)
- 2019-03-27 01:21:08.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:08.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2637(Integer)
- 2019-03-27 01:21:08.680 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.681 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2639(Integer)
- 2019-03-27 01:21:08.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 28
- 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=?)
- 2019-03-27 01:21:08.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2639(Integer)
- 2019-03-27 01:21:08.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.704 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2644(Integer)
- 2019-03-27 01:21:08.714 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
- 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=?)
- 2019-03-27 01:21:08.716 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2644(Integer)
- 2019-03-27 01:21:08.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2646(Integer)
- 2019-03-27 01:21:08.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
- 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=?)
- 2019-03-27 01:21:08.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2646(Integer)
- 2019-03-27 01:21:08.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2640(Integer)
- 2019-03-27 01:21:08.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
- 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=?)
- 2019-03-27 01:21:08.756 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2640(Integer)
- 2019-03-27 01:21:08.765 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2650(Integer)
- 2019-03-27 01:21:08.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 7
- 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=?)
- 2019-03-27 01:21:08.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2650(Integer)
- 2019-03-27 01:21:08.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2642(Integer)
- 2019-03-27 01:21:08.798 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2642(Integer)
- 2019-03-27 01:21:08.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2645(Integer)
- 2019-03-27 01:21:08.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.822 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2645(Integer)
- 2019-03-27 01:21:08.830 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2641(Integer)
- 2019-03-27 01:21:08.840 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2641(Integer)
- 2019-03-27 01:21:08.850 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3114(Integer)
- 2019-03-27 01:21:08.860 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3114(Integer)
- 2019-03-27 01:21:08.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 0
- 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
- 2019-03-27 01:21:08.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2653(Integer)
- 2019-03-27 01:21:08.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2653(Integer)
- 2019-03-27 01:21:08.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.892 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2648(Integer)
- 2019-03-27 01:21:08.901 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.903 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2648(Integer)
- 2019-03-27 01:21:08.912 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2651(Integer)
- 2019-03-27 01:21:08.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2651(Integer)
- 2019-03-27 01:21:08.935 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.936 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2647(Integer)
- 2019-03-27 01:21:08.944 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2647(Integer)
- 2019-03-27 01:21:08.955 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2654(Integer)
- 2019-03-27 01:21:08.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2654(Integer)
- 2019-03-27 01:21:08.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:08.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2649(Integer)
- 2019-03-27 01:21:08.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:08.995 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2649(Integer)
- 2019-03-27 01:21:09.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:09.007 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2626(Integer)
- 2019-03-27 01:21:09.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:09.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2626(Integer)
- 2019-03-27 01:21:09.029 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:09.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2477(Integer)
- 2019-03-27 01:21:09.039 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 0
- 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=?)
- 2019-03-27 01:21:09.041 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2477(Integer)
- 2019-03-27 01:21:09.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:09.093 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:09.094 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:09.095 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 2019-03-27 01:21:09.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 2019-03-27 01:21:09.097 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 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
- 2019-03-27 01:21:09.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 2019-03-27 01:21:09.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 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
- 2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:09.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 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=?)
- 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=?)
- 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:09.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 2019-03-27 01:21:09.132 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:09.132 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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
- 2019-03-27 01:21:09.135 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 2019-03-27 01:21:09.135 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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 = ?
- 2019-03-27 01:21:09.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
- 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 = ?
- 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)
- 2019-03-27 01:21:09.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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
- 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
- 2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters:
- 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)
- 2019-03-27 01:21:09.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <== Total: 1
- 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 ?,?
- 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)
- 2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <== Total: 3
- 2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 3
- 2019-03-27 01:21:09.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <== Total: 1
- 2019-03-27 01:21:10.496 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:10.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:10.506 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:10.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:10.517 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:10.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:10.526 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:10.528 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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 =?
- 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)
- 2019-03-27 01:21:10.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <== Total: 0
- 2019-03-27 01:21:12.522 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:12.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:12.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:12.537 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:12.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:12.559 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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)
- 2019-03-27 01:21:12.570 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 0
- 2019-03-27 01:21:15.525 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:15.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:15.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:15.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:15.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:15.558 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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)
- 2019-03-27 01:21:15.573 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| <== Total: 1
- 2019-03-27 01:21:15.586 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:15.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:15.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:15.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:15.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:15.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:15.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:15.626 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:15.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
- 2019-03-27 01:21:15.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 34
- 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 = ?
- 2019-03-27 01:21:15.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
- 2019-03-27 01:21:15.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:15.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
- 2019-03-27 01:21:15.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:15.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:15.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
- 2019-03-27 01:21:15.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:15.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:15.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:16.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:16.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
- 2019-03-27 01:21:16.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:16.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:17.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:17.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
- 2019-03-27 01:21:17.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:17.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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
- 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]
- 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]
- 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 = ?
- 2019-03-27 01:21:17.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
- 2019-03-27 01:21:17.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:17.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
- 2019-03-27 01:21:17.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:17.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:17.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
- 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
- 2019-03-27 01:21:17.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
- 2019-03-27 01:21:17.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:17.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
- 2019-03-27 01:21:17.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:17.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
- 2019-03-27 01:21:17.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:17.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
- 2019-03-27 01:21:17.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:18.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:18.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
- 2019-03-27 01:21:18.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:18.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:18.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
- 2019-03-27 01:21:18.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:18.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:19.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:19.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 40
- 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
- 2019-03-27 01:21:19.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
- 2019-03-27 01:21:19.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
- 2019-03-27 01:21:19.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
- 2019-03-27 01:21:19.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
- 2019-03-27 01:21:19.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
- 2019-03-27 01:21:19.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:19.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:19.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
- 2019-03-27 01:21:19.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.511 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
- 2019-03-27 01:21:19.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:19.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:19.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
- 2019-03-27 01:21:19.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
- 2019-03-27 01:21:19.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:19.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:19.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
- 2019-03-27 01:21:19.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
- 2019-03-27 01:21:19.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
- 2019-03-27 01:21:19.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:19.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:19.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:19.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:19.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:20.046 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:20.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:20.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:20.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:20.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:20.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:20.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
- 2019-03-27 01:21:20.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:20.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
- 2019-03-27 01:21:20.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:20.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
- 2019-03-27 01:21:20.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:20.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:20.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:20.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
- 2019-03-27 01:21:20.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:20.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
- 2019-03-27 01:21:20.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:20.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
- 2019-03-27 01:21:20.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:20.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:20.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:20.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:20.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:20.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:20.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:20.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
- 2019-03-27 01:21:20.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:21.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:21.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
- 2019-03-27 01:21:21.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:21.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:21.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:21.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
- 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
- 2019-03-27 01:21:21.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
- 2019-03-27 01:21:21.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:21.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:21.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:21.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:21.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
- 2019-03-27 01:21:21.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:21.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:21.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:21.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:21.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:21.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:21.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:21.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
- 2019-03-27 01:21:21.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:21.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:21.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:21.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:21.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
- 2019-03-27 01:21:22.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
- 2019-03-27 01:21:22.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
- 2019-03-27 01:21:22.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
- 2019-03-27 01:21:22.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:22.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:22.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
- 2019-03-27 01:21:22.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
- 2019-03-27 01:21:22.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:22.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:22.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
- 2019-03-27 01:21:22.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.568 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
- 2019-03-27 01:21:22.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.667 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
- 2019-03-27 01:21:22.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
- 2019-03-27 01:21:22.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:22.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:22.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
- 2019-03-27 01:21:22.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.850 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:22.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
- 2019-03-27 01:21:22.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:22.922 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:22.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:22.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:22.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
- 2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:23.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
- 2019-03-27 01:21:23.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:23.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:23.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
- 2019-03-27 01:21:23.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:23.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:23.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:23.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
- 2019-03-27 01:21:23.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:23.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
- 2019-03-27 01:21:23.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:23.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:23.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
- 2019-03-27 01:21:23.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:23.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:23.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
- 2019-03-27 01:21:23.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.729 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:23.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:24.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
- 2019-03-27 01:21:24.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:24.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:24.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:24.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:24.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:24.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:24.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 41
- 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
- 2019-03-27 01:21:24.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
- 2019-03-27 01:21:24.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:24.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:24.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
- 2019-03-27 01:21:24.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:24.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
- 2019-03-27 01:21:24.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:24.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:24.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
- 2019-03-27 01:21:24.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.714 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:24.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
- 2019-03-27 01:21:24.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:24.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
- 2019-03-27 01:21:24.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:24.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:24.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102048(String)
- 2019-03-27 01:21:24.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:24.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:24.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
- 2019-03-27 01:21:24.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:24.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
- 2019-03-27 01:21:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:24.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:24.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
- 2019-03-27 01:21:24.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:25.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:25.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
- 2019-03-27 01:21:25.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:25.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:25.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
- 2019-03-27 01:21:25.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:25.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:26.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:26.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
- 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
- 2019-03-27 01:21:26.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103024(String)
- 2019-03-27 01:21:26.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:26.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103017(String)
- 2019-03-27 01:21:26.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.157 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:26.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103026(String)
- 2019-03-27 01:21:26.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:26.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
- 2019-03-27 01:21:26.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.385 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:26.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
- 2019-03-27 01:21:26.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:26.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
- 2019-03-27 01:21:26.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:26.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
- 2019-03-27 01:21:26.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:26.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
- 2019-03-27 01:21:26.703 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:26.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
- 2019-03-27 01:21:26.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:26.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:26.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:26.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
- 2019-03-27 01:21:26.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:26.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
- 2019-03-27 01:21:26.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:26.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:26.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
- 2019-03-27 01:21:26.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:27.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:27.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
- 2019-03-27 01:21:27.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:27.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:27.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
- 2019-03-27 01:21:27.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:27.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:27.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:28.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 24
- 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
- 2019-03-27 01:21:28.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
- 2019-03-27 01:21:28.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
- 2019-03-27 01:21:28.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:28.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
- 2019-03-27 01:21:28.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
- 2019-03-27 01:21:28.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:28.344 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
- 2019-03-27 01:21:28.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
- 2019-03-27 01:21:28.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:28.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
- 2019-03-27 01:21:28.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
- 2019-03-27 01:21:28.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:28.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
- 2019-03-27 01:21:28.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
- 2019-03-27 01:21:28.794 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:28.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
- 2019-03-27 01:21:28.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:28.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:28.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
- 2019-03-27 01:21:28.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:28.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:28.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:29.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:29.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:29.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
- 2019-03-27 01:21:29.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:29.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
- 2019-03-27 01:21:29.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:29.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:29.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
- 2019-03-27 01:21:29.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:29.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:29.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
- 2019-03-27 01:21:29.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:29.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:29.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
- 2019-03-27 01:21:29.879 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:29.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:30.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:30.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:30.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:30.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:30.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
- 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
- 2019-03-27 01:21:30.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
- 2019-03-27 01:21:30.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:30.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:30.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
- 2019-03-27 01:21:30.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
- 2019-03-27 01:21:30.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:30.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:30.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
- 2019-03-27 01:21:30.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
- 2019-03-27 01:21:30.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
- 2019-03-27 01:21:30.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
- 2019-03-27 01:21:30.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:30.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:30.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
- 2019-03-27 01:21:30.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
- 2019-03-27 01:21:30.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
- 2019-03-27 01:21:30.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.934 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:30.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
- 2019-03-27 01:21:30.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:30.992 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:31.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
- 2019-03-27 01:21:31.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
- 2019-03-27 01:21:31.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:31.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
- 2019-03-27 01:21:31.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
- 2019-03-27 01:21:31.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:31.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
- 2019-03-27 01:21:31.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
- 2019-03-27 01:21:31.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
- 2019-03-27 01:21:31.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
- 2019-03-27 01:21:31.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:31.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
- 2019-03-27 01:21:31.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.724 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202009(String)
- 2019-03-27 01:21:31.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202018(String)
- 2019-03-27 01:21:31.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:31.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:31.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202015(String)
- 2019-03-27 01:21:31.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:31.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:31.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:32.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:32.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:32.048 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:32.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
- 2019-03-27 01:21:32.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:32.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
- 2019-03-27 01:21:32.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:32.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:32.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
- 2019-03-27 01:21:32.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:32.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:32.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
- 2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:32.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:32.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
- 2019-03-27 01:21:32.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:32.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:33.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:33.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:33.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:33.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:33.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 30
- 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
- 2019-03-27 01:21:33.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203012(String)
- 2019-03-27 01:21:33.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203014(String)
- 2019-03-27 01:21:33.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203022(String)
- 2019-03-27 01:21:33.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.335 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:33.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
- 2019-03-27 01:21:33.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
- 2019-03-27 01:21:33.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
- 2019-03-27 01:21:33.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
- 2019-03-27 01:21:33.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.615 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
- 2019-03-27 01:21:33.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
- 2019-03-27 01:21:33.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
- 2019-03-27 01:21:33.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.803 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:33.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:33.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
- 2019-03-27 01:21:33.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
- 2019-03-27 01:21:33.955 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:33.979 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:33.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
- 2019-03-27 01:21:33.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:33.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:34.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
- 2019-03-27 01:21:34.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:34.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:34.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
- 2019-03-27 01:21:34.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.135 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:34.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:34.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:34.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
- 2019-03-27 01:21:34.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
- 2019-03-27 01:21:34.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:34.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:34.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
- 2019-03-27 01:21:34.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:34.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:34.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
- 2019-03-27 01:21:34.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:34.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:35.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:35.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
- 2019-03-27 01:21:35.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:35.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:35.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:35.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?,?,?,?,?,?,?,?,?)
- 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
- 2019-03-27 01:21:35.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <== Updates: 1
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:35.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:35.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 28
- 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
- 2019-03-27 01:21:35.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207023(String)
- 2019-03-27 01:21:35.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:35.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:35.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207013(String)
- 2019-03-27 01:21:35.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:35.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:35.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207031(String)
- 2019-03-27 01:21:35.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:35.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.736 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
- 2019-03-27 01:21:35.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:35.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:35.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
- 2019-03-27 01:21:35.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:35.925 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
- 2019-03-27 01:21:35.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:35.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:35.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:36.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
- 2019-03-27 01:21:36.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
- 2019-03-27 01:21:36.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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
- 2019-03-27 01:21:36.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
- 2019-03-27 01:21:36.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.311 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.312 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
- 2019-03-27 01:21:36.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
- 2019-03-27 01:21:36.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207030(String)
- 2019-03-27 01:21:36.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207011(String)
- 2019-03-27 01:21:36.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.617 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:36.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207022(String)
- 2019-03-27 01:21:36.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 0
- 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 (?,?,?,?,?,?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <== Updates: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:36.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 1
- 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
- 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)
- 2019-03-27 01:21:36.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:36.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
- 2019-03-27 01:21:36.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:36.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
- 2019-03-27 01:21:36.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:36.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
- 2019-03-27 01:21:36.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:36.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:36.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
- 2019-03-27 01:21:36.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
- 2019-03-27 01:21:37.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:37.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:37.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
- 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
- 2019-03-27 01:21:37.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010003032(String)
- 2019-03-27 01:21:37.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:37.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:37.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
- 2019-03-27 01:21:37.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:37.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
- 2019-03-27 01:21:37.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
- 2019-03-27 01:21:37.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
- 2019-03-27 01:21:37.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
- 2019-03-27 01:21:37.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:37.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:37.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 32
- 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
- 2019-03-27 01:21:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010009022(String)
- 2019-03-27 01:21:37.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:37.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:37.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
- 2019-03-27 01:21:37.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:37.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
- 2019-03-27 01:21:37.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
- 2019-03-27 01:21:37.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
- 2019-03-27 01:21:37.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
- 2019-03-27 01:21:37.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:37.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:37.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 42
- 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
- 2019-03-27 01:21:37.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010008019(String)
- 2019-03-27 01:21:37.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:37.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:37.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
- 2019-03-27 01:21:37.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:37.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
- 2019-03-27 01:21:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
- 2019-03-27 01:21:37.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:37.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:37.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
- 2019-03-27 01:21:37.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
- 2019-03-27 01:21:38.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:38.056 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:38.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
- 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
- 2019-03-27 01:21:38.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010001014(String)
- 2019-03-27 01:21:38.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:38.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:38.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
- 2019-03-27 01:21:38.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:38.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
- 2019-03-27 01:21:38.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
- 2019-03-27 01:21:38.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
- 2019-03-27 01:21:38.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
- 2019-03-27 01:21:38.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:38.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:38.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 42
- 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
- 2019-03-27 01:21:38.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010002011(String)
- 2019-03-27 01:21:38.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:38.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:38.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
- 2019-03-27 01:21:38.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:38.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
- 2019-03-27 01:21:38.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
- 2019-03-27 01:21:38.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
- 2019-03-27 01:21:38.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:38.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:38.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
- 2019-03-27 01:21:38.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:38.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:38.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 46
- 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
- 2019-03-27 01:21:38.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010006011(String)
- 2019-03-27 01:21:38.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:38.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:38.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
- 2019-03-27 01:21:38.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:38.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
- 2019-03-27 01:21:38.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:38.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:38.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 43
- 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
- 2019-03-27 01:21:38.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450205013(String)
- 2019-03-27 01:21:38.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:39.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
- 2019-03-27 01:21:39.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:39.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
- 2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
- 2019-03-27 01:21:39.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
- 2019-03-27 01:21:39.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
- 2019-03-27 01:21:39.216 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:39.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:39.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
- 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
- 2019-03-27 01:21:39.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450204011(String)
- 2019-03-27 01:21:39.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:39.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:39.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
- 2019-03-27 01:21:39.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
- 2019-03-27 01:21:39.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
- 2019-03-27 01:21:39.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
- 2019-03-27 01:21:39.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
- 2019-03-27 01:21:39.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:39.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:39.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
- 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
- 2019-03-27 01:21:39.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450206014(String)
- 2019-03-27 01:21:39.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:39.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:39.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
- 2019-03-27 01:21:39.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:39.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
- 2019-03-27 01:21:39.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:39.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:39.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 18
- 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
- 2019-03-27 01:21:39.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
- 2019-03-27 01:21:39.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:39.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
- 2019-03-27 01:21:39.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:39.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
- 2019-03-27 01:21:39.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
- 2019-03-27 01:21:39.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
- 2019-03-27 01:21:39.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:39.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:39.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
- 2019-03-27 01:21:39.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:40.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 26
- 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
- 2019-03-27 01:21:40.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010007020(String)
- 2019-03-27 01:21:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:40.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:40.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
- 2019-03-27 01:21:40.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:40.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
- 2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
- 2019-03-27 01:21:40.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.211 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
- 2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
- 2019-03-27 01:21:40.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:40.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:40.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 30
- 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
- 2019-03-27 01:21:40.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450208017(String)
- 2019-03-27 01:21:40.405 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:40.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:40.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
- 2019-03-27 01:21:40.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:40.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
- 2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
- 2019-03-27 01:21:40.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
- 2019-03-27 01:21:40.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
- 2019-03-27 01:21:40.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:40.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:40.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 48
- 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
- 2019-03-27 01:21:40.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010005014(String)
- 2019-03-27 01:21:40.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:40.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
- 2019-03-27 01:21:40.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:40.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
- 2019-03-27 01:21:40.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
- 2019-03-27 01:21:40.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
- 2019-03-27 01:21:40.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:40.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
- 2019-03-27 01:21:40.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:41.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:41.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
- 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
- 2019-03-27 01:21:41.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010004017(String)
- 2019-03-27 01:21:41.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:41.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:41.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
- 2019-03-27 01:21:41.113 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:41.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
- 2019-03-27 01:21:41.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
- 2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
- 2019-03-27 01:21:41.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
- 2019-03-27 01:21:41.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:41.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:41.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 69
- 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
- 2019-03-27 01:21:41.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230001012(String)
- 2019-03-27 01:21:41.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:41.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:41.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
- 2019-03-27 01:21:41.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:41.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
- 2019-03-27 01:21:41.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:41.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:41.536 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 36
- 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
- 2019-03-27 01:21:41.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230003005(String)
- 2019-03-27 01:21:41.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:41.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
- 2019-03-27 01:21:41.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 = ?
- 2019-03-27 01:21:41.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
- 2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
- 2019-03-27 01:21:41.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
- 2019-03-27 01:21:41.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
- 2019-03-27 01:21:41.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <== Total: 0
- 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 (?,?);
- 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)
- 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
- 2019-03-27 01:21:41.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters:
- 2019-03-27 01:21:41.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <== Total: 24
- 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
- 2019-03-27 01:21:41.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230002011(String)
- 2019-03-27 01:21:41.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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 = ?
- 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)
- 2019-03-27 01:21:41.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <== Total: 0
- 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 = ?
- 2019-03-27 01:21:41.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
- 2019-03-27 01:21:41.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
- 2019-03-27 01:21:41.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:41.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 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 = ?
- 2019-03-27 01:21:41.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
- 2019-03-27 01:21:42.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <== Total: 1
- 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 (?, ?,?,?,?,?,?)
- 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)
- 2019-03-27 01:21:42.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <== Updates: 1
- 2019-03-27 01:21:42.098 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 2019-03-27 01:21:42.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
- 2019-03-27 01:21:42.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:42.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:42.117 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 24
- 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=?)
- 2019-03-27 01:21:42.118 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
- 2019-03-27 01:21:42.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
- 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
- 2019-03-27 01:21:42.135 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
- 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
- 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)
- 2019-03-27 01:21:42.147 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <== Total: 9
|