visual.log 493 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  1. 2017-08-18 09:28:24.604 |-INFO [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on jack-PC with PID 800 (E:\git_code\VisualInspection_server\target\classes started by jack in E:\git_code\VisualInspection_server)
  2. 2017-08-18 09:28:24.615 |-INFO [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
  3. 2017-08-18 09:28:25.040 |-INFO [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
  4. 2017-08-18 09:28:25.368 |-INFO [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5c9eb61a: startup date [Fri Aug 18 09:28:25 CST 2017]; root of context hierarchy
  5. 2017-08-18 09:28:28.428 |-INFO [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
  6. 2017-08-18 09:28:30.086 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8422bba7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  7. 2017-08-18 09:28:30.379 |-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$$1cd083e1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  8. 2017-08-18 09:28:30.449 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  9. 2017-08-18 09:28:30.455 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@24274657' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  10. 2017-08-18 09:28:30.464 |-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$$41a52693] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  11. 2017-08-18 09:28:30.495 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  12. 2017-08-18 09:28:30.534 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$6f662fa3] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  13. 2017-08-18 09:28:30.593 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  14. 2017-08-18 09:28:30.605 |-INFO [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$cd34f1c5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2017-08-18 09:28:32.473 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
  16. 2017-08-18 09:28:32.500 |-INFO [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
  17. 2017-08-18 09:28:32.502 |-INFO [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
  18. 2017-08-18 09:28:32.676 |-INFO [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
  19. 2017-08-18 09:28:32.677 |-INFO [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 7309 ms
  20. 2017-08-18 09:28:33.403 |-INFO [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
  21. 2017-08-18 09:28:37.628 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
  22. 2017-08-18 09:28:37.629 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
  23. 2017-08-18 09:28:37.630 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
  24. 2017-08-18 09:28:37.630 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
  25. 2017-08-18 09:28:37.630 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
  26. 2017-08-18 09:28:37.632 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
  27. 2017-08-18 09:28:37.633 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
  28. 2017-08-18 09:28:37.634 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
  29. 2017-08-18 09:28:37.634 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
  30. 2017-08-18 09:28:37.634 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
  31. 2017-08-18 09:28:37.634 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
  32. 2017-08-18 09:28:37.635 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
  33. 2017-08-18 09:28:37.635 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
  34. 2017-08-18 09:28:37.637 |-INFO [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
  35. 2017-08-18 09:28:39.565 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
  36. 2017-08-18 09:28:39.565 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
  37. 2017-08-18 09:28:39.739 |-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@3d74ae15, org.springframework.security.web.context.SecurityContextPersistenceFilter@99645f2, org.springframework.security.web.header.HeaderWriterFilter@7dfb5d32, org.springframework.web.filter.CorsFilter@3a3e408, org.springframework.security.web.authentication.logout.LogoutFilter@5e71d2b4, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@10c01e45, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@77b51b15, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6424d96b, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4a7a65f4, org.springframework.security.web.session.SessionManagementFilter@fcaf576, org.springframework.security.web.access.ExceptionTranslationFilter@25510aae, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@25a18d44]
  38. 2017-08-18 09:28:39.775 |-INFO [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@738fb739, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@672eaf6a, org.springframework.security.web.context.SecurityContextPersistenceFilter@2a038fcb, org.springframework.security.web.header.HeaderWriterFilter@717fb4cf, org.springframework.security.web.authentication.logout.LogoutFilter@3ebb6180, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@9b7d3ec, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@3716817c, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3b43929d, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@486347b6, org.springframework.security.web.session.SessionManagementFilter@4d8b4823, org.springframework.security.web.access.ExceptionTranslationFilter@13b364, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4bf574e6]
  39. 2017-08-18 09:28:39.997 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@5c9eb61a: startup date [Fri Aug 18 09:28:25 CST 2017]; root of context hierarchy
  40. 2017-08-18 09:28:40.191 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
  41. 2017-08-18 09:28:40.193 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
  42. 2017-08-18 09:28:40.197 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
  43. 2017-08-18 09:28:40.207 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
  44. 2017-08-18 09:28:40.208 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
  45. 2017-08-18 09:28:40.208 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
  46. 2017-08-18 09:28:40.209 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
  47. 2017-08-18 09:28:40.210 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
  48. 2017-08-18 09:28:40.211 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
  49. 2017-08-18 09:28:40.221 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  50. 2017-08-18 09:28:40.222 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
  51. 2017-08-18 09:28:40.223 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
  52. 2017-08-18 09:28:40.224 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
  53. 2017-08-18 09:28:40.227 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
  54. 2017-08-18 09:28:40.228 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
  55. 2017-08-18 09:28:40.229 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  56. 2017-08-18 09:28:40.230 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  57. 2017-08-18 09:28:40.231 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
  58. 2017-08-18 09:28:40.232 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
  59. 2017-08-18 09:28:40.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
  60. 2017-08-18 09:28:40.236 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
  61. 2017-08-18 09:28:40.238 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
  62. 2017-08-18 09:28:40.238 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
  63. 2017-08-18 09:28:40.239 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
  64. 2017-08-18 09:28:40.239 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
  65. 2017-08-18 09:28:40.241 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
  66. 2017-08-18 09:28:40.242 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
  67. 2017-08-18 09:28:40.244 |-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)
  68. 2017-08-18 09:28:40.246 |-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)
  69. 2017-08-18 09:28:40.246 |-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)
  70. 2017-08-18 09:28:40.247 |-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)
  71. 2017-08-18 09:28:40.247 |-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)
  72. 2017-08-18 09:28:40.250 |-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)
  73. 2017-08-18 09:28:40.251 |-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)
  74. 2017-08-18 09:28:40.251 |-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)
  75. 2017-08-18 09:28:40.252 |-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)
  76. 2017-08-18 09:28:40.252 |-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)
  77. 2017-08-18 09:28:40.252 |-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)
  78. 2017-08-18 09:28:40.253 |-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)
  79. 2017-08-18 09:28:40.254 |-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>)
  80. 2017-08-18 09:28:40.256 |-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)
  81. 2017-08-18 09:28:40.257 |-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)
  82. 2017-08-18 09:28:40.258 |-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)
  83. 2017-08-18 09:28:40.263 |-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)
  84. 2017-08-18 09:28:40.264 |-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)
  85. 2017-08-18 09:28:40.266 |-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)
  86. 2017-08-18 09:28:40.266 |-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)
  87. 2017-08-18 09:28:40.268 |-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)
  88. 2017-08-18 09:28:40.269 |-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)
  89. 2017-08-18 09:28:40.277 |-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()
  90. 2017-08-18 09:28:40.278 |-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)
  91. 2017-08-18 09:28:40.279 |-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)
  92. 2017-08-18 09:28:40.279 |-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
  93. 2017-08-18 09:28:40.280 |-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)
  94. 2017-08-18 09:28:40.280 |-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)
  95. 2017-08-18 09:28:40.281 |-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)
  96. 2017-08-18 09:28:40.282 |-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)
  97. 2017-08-18 09:28:40.282 |-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()
  98. 2017-08-18 09:28:40.283 |-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()
  99. 2017-08-18 09:28:40.283 |-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)
  100. 2017-08-18 09:28:40.284 |-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)
  101. 2017-08-18 09:28:40.285 |-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)
  102. 2017-08-18 09:28:40.285 |-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)
  103. 2017-08-18 09:28:40.293 |-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)
  104. 2017-08-18 09:28:40.294 |-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)
  105. 2017-08-18 09:28:40.295 |-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)
  106. 2017-08-18 09:28:40.295 |-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)
  107. 2017-08-18 09:28:40.296 |-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)
  108. 2017-08-18 09:28:40.297 |-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)
  109. 2017-08-18 09:28:40.299 |-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)
  110. 2017-08-18 09:28:40.300 |-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)
  111. 2017-08-18 09:28:40.302 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
  112. 2017-08-18 09:28:40.303 |-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)
  113. 2017-08-18 09:28:40.303 |-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
  114. 2017-08-18 09:28:40.304 |-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)
  115. 2017-08-18 09:28:40.308 |-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
  116. 2017-08-18 09:28:40.309 |-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)
  117. 2017-08-18 09:28:40.310 |-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
  118. 2017-08-18 09:28:40.312 |-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
  119. 2017-08-18 09:28:40.313 |-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
  120. 2017-08-18 09:28:40.319 |-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)
  121. 2017-08-18 09:28:40.319 |-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)
  122. 2017-08-18 09:28:40.320 |-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()
  123. 2017-08-18 09:28:40.338 |-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)
  124. 2017-08-18 09:28:40.338 |-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)
  125. 2017-08-18 09:28:40.340 |-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)
  126. 2017-08-18 09:28:40.341 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
  127. 2017-08-18 09:28:40.342 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
  128. 2017-08-18 09:28:40.343 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
  129. 2017-08-18 09:28:40.351 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
  130. 2017-08-18 09:28:40.352 |-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)
  131. 2017-08-18 09:28:40.353 |-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)
  132. 2017-08-18 09:28:40.353 |-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)
  133. 2017-08-18 09:28:40.354 |-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)
  134. 2017-08-18 09:28:40.356 |-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)
  135. 2017-08-18 09:28:40.357 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(com.xintong.visualinspection.bean.Score)
  136. 2017-08-18 09:28:40.357 |-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)
  137. 2017-08-18 09:28:40.358 |-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)
  138. 2017-08-18 09:28:40.358 |-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)
  139. 2017-08-18 09:28:40.360 |-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()
  140. 2017-08-18 09:28:40.360 |-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)
  141. 2017-08-18 09:28:40.365 |-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)
  142. 2017-08-18 09:28:40.366 |-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)
  143. 2017-08-18 09:28:40.367 |-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)
  144. 2017-08-18 09:28:40.368 |-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)
  145. 2017-08-18 09:28:40.368 |-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)
  146. 2017-08-18 09:28:40.369 |-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)
  147. 2017-08-18 09:28:40.370 |-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)
  148. 2017-08-18 09:28:40.370 |-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)
  149. 2017-08-18 09:28:40.370 |-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)
  150. 2017-08-18 09:28:40.371 |-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)
  151. 2017-08-18 09:28:40.371 |-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)
  152. 2017-08-18 09:28:40.373 |-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)
  153. 2017-08-18 09:28:40.374 |-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)
  154. 2017-08-18 09:28:40.376 |-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)
  155. 2017-08-18 09:28:40.387 |-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)
  156. 2017-08-18 09:28:40.391 |-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)
  157. 2017-08-18 09:28:40.392 |-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)
  158. 2017-08-18 09:28:40.392 |-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)
  159. 2017-08-18 09:28:40.393 |-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)
  160. 2017-08-18 09:28:40.393 |-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)
  161. 2017-08-18 09:28:40.394 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
  162. 2017-08-18 09:28:40.394 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
  163. 2017-08-18 09:28:40.395 |-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)
  164. 2017-08-18 09:28:40.419 |-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)
  165. 2017-08-18 09:28:40.420 |-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)
  166. 2017-08-18 09:28:40.421 |-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)
  167. 2017-08-18 09:28:40.423 |-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)
  168. 2017-08-18 09:28:40.425 |-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)
  169. 2017-08-18 09:28:40.426 |-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)
  170. 2017-08-18 09:28:40.426 |-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)
  171. 2017-08-18 09:28:40.427 |-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)
  172. 2017-08-18 09:28:40.427 |-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)
  173. 2017-08-18 09:28:40.428 |-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)
  174. 2017-08-18 09:28:40.429 |-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)
  175. 2017-08-18 09:28:40.430 |-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)
  176. 2017-08-18 09:28:40.431 |-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)
  177. 2017-08-18 09:28:40.431 |-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)
  178. 2017-08-18 09:28:40.432 |-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)
  179. 2017-08-18 09:28:40.432 |-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)
  180. 2017-08-18 09:28:40.435 |-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)
  181. 2017-08-18 09:28:40.435 |-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)
  182. 2017-08-18 09:28:40.436 |-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)
  183. 2017-08-18 09:28:40.436 |-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)
  184. 2017-08-18 09:28:40.437 |-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)
  185. 2017-08-18 09:28:40.437 |-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)
  186. 2017-08-18 09:28:40.438 |-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)
  187. 2017-08-18 09:28:40.438 |-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)
  188. 2017-08-18 09:28:40.439 |-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)
  189. 2017-08-18 09:28:40.439 |-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)
  190. 2017-08-18 09:28:40.445 |-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)
  191. 2017-08-18 09:28:40.446 |-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)
  192. 2017-08-18 09:28:40.446 |-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)
  193. 2017-08-18 09:28:40.449 |-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)
  194. 2017-08-18 09:28:40.450 |-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)
  195. 2017-08-18 09:28:40.450 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
  196. 2017-08-18 09:28:40.450 |-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)
  197. 2017-08-18 09:28:40.451 |-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)
  198. 2017-08-18 09:28:40.452 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
  199. 2017-08-18 09:28:40.452 |-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)
  200. 2017-08-18 09:28:40.453 |-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()
  201. 2017-08-18 09:28:40.453 |-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()
  202. 2017-08-18 09:28:40.453 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
  203. 2017-08-18 09:28:40.454 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
  204. 2017-08-18 09:28:40.454 |-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()
  205. 2017-08-18 09:28:40.454 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
  206. 2017-08-18 09:28:40.456 |-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)
  207. 2017-08-18 09:28:40.457 |-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>)
  208. 2017-08-18 09:28:40.457 |-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>)
  209. 2017-08-18 09:28:40.458 |-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)
  210. 2017-08-18 09:28:40.464 |-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()
  211. 2017-08-18 09:28:40.465 |-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
  212. 2017-08-18 09:28:40.466 |-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)
  213. 2017-08-18 09:28:40.467 |-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)
  214. 2017-08-18 09:28:40.467 |-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)
  215. 2017-08-18 09:28:40.468 |-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)
  216. 2017-08-18 09:28:40.469 |-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)
  217. 2017-08-18 09:28:40.470 |-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)
  218. 2017-08-18 09:28:40.470 |-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()
  219. 2017-08-18 09:28:40.474 |-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)
  220. 2017-08-18 09:28:40.475 |-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)
  221. 2017-08-18 09:28:40.476 |-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)
  222. 2017-08-18 09:28:40.476 |-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)
  223. 2017-08-18 09:28:40.556 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
  224. 2017-08-18 09:28:40.686 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  225. 2017-08-18 09:28:40.687 |-INFO [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
  226. 2017-08-18 09:28:40.743 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
  227. 2017-08-18 09:28:40.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
  228. 2017-08-18 09:28:40.744 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
  229. 2017-08-18 09:28:40.745 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
  230. 2017-08-18 09:28:40.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
  231. 2017-08-18 09:28:40.746 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
  232. 2017-08-18 09:28:40.747 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
  233. 2017-08-18 09:28:40.747 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
  234. 2017-08-18 09:28:40.750 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
  235. 2017-08-18 09:28:40.751 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
  236. 2017-08-18 09:28:40.752 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
  237. 2017-08-18 09:28:40.753 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
  238. 2017-08-18 09:28:40.754 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
  239. 2017-08-18 09:28:40.755 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
  240. 2017-08-18 09:28:40.756 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
  241. 2017-08-18 09:28:40.759 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
  242. 2017-08-18 09:28:40.760 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
  243. 2017-08-18 09:28:40.762 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
  244. 2017-08-18 09:28:40.764 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
  245. 2017-08-18 09:28:40.767 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
  246. 2017-08-18 09:28:40.768 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
  247. 2017-08-18 09:28:40.768 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
  248. 2017-08-18 09:28:40.769 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
  249. 2017-08-18 09:28:40.770 |-INFO [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
  250. 2017-08-18 09:28:40.876 |-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]
  251. 2017-08-18 09:28:42.128 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  252. 2017-08-18 09:28:42.130 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  253. 2017-08-18 09:28:42.132 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  254. 2017-08-18 09:28:42.507 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
  255. 2017-08-18 09:28:42.514 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
  256. 2017-08-18 09:28:42.520 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  257. 2017-08-18 09:28:42.524 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  258. 2017-08-18 09:28:42.525 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
  259. 2017-08-18 09:28:42.526 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
  260. 2017-08-18 09:28:42.528 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  261. 2017-08-18 09:28:42.530 |-INFO [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  262. 2017-08-18 09:28:42.532 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
  263. 2017-08-18 09:28:42.534 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
  264. 2017-08-18 09:28:42.535 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
  265. 2017-08-18 09:28:42.535 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
  266. 2017-08-18 09:28:42.535 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
  267. 2017-08-18 09:28:42.536 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
  268. 2017-08-18 09:28:42.536 |-INFO [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
  269. 2017-08-18 09:28:42.576 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
  270. 2017-08-18 09:28:42.577 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
  271. 2017-08-18 09:28:42.578 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
  272. 2017-08-18 09:28:42.578 |-INFO [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
  273. 2017-08-18 09:28:42.604 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
  274. 2017-08-18 09:28:42.627 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
  275. 2017-08-18 09:28:42.628 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
  276. 2017-08-18 09:28:42.637 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
  277. 2017-08-18 09:28:42.767 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
  278. 2017-08-18 09:28:43.542 |-INFO [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
  279. 2017-08-18 09:28:43.652 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
  280. 2017-08-18 09:28:43.765 |-INFO [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
  281. 2017-08-18 09:28:43.766 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
  282. 2017-08-18 09:28:43.766 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
  283. 2017-08-18 09:28:43.767 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
  284. 2017-08-18 09:28:43.767 |-INFO [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
  285. 2017-08-18 09:28:44.851 |-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
  286. 2017-08-18 09:28:44.852 |-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()
  287. 2017-08-18 09:28:44.854 |-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()
  288. 2017-08-18 09:28:44.855 |-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()
  289. 2017-08-18 09:28:44.858 |-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)
  290. 2017-08-18 09:28:44.859 |-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>)
  291. 2017-08-18 09:28:44.859 |-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()
  292. 2017-08-18 09:28:44.860 |-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)
  293. 2017-08-18 09:28:44.861 |-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()
  294. 2017-08-18 09:28:44.862 |-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()
  295. 2017-08-18 09:28:44.864 |-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)
  296. 2017-08-18 09:28:44.864 |-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()
  297. 2017-08-18 09:28:44.865 |-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)
  298. 2017-08-18 09:28:44.866 |-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()
  299. 2017-08-18 09:28:44.867 |-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()
  300. 2017-08-18 09:28:44.868 |-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)
  301. 2017-08-18 09:28:44.869 |-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()
  302. 2017-08-18 09:28:45.801 |-INFO [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
  303. 2017-08-18 09:28:45.813 |-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
  304. 2017-08-18 09:28:46.084 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
  305. 2017-08-18 09:28:46.086 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
  306. 2017-08-18 09:28:46.086 |-INFO [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
  307. 2017-08-18 09:28:46.096 |-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]
  308. 2017-08-18 09:28:46.109 |-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]
  309. 2017-08-18 09:28:46.110 |-INFO [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
  310. 2017-08-18 09:28:46.116 |-INFO [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
  311. 2017-08-18 09:28:46.119 |-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]
  312. 2017-08-18 09:28:46.150 |-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]
  313. 2017-08-18 09:28:46.175 |-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]
  314. 2017-08-18 09:28:46.184 |-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]
  315. 2017-08-18 09:28:46.195 |-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]
  316. 2017-08-18 09:28:46.203 |-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]
  317. 2017-08-18 09:28:46.213 |-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]
  318. 2017-08-18 09:28:46.223 |-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]
  319. 2017-08-18 09:28:46.228 |-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]
  320. 2017-08-18 09:28:46.232 |-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]
  321. 2017-08-18 09:28:46.237 |-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]
  322. 2017-08-18 09:28:46.242 |-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]
  323. 2017-08-18 09:28:46.636 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
  324. 2017-08-18 09:28:47.399 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Preparing: SELECT * FROM sys_code WHERE valid!=0
  325. 2017-08-18 09:28:47.433 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters:
  326. 2017-08-18 09:28:47.506 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <== Total: 40
  327. 2017-08-18 09:28:47.508 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
  328. 2017-08-18 09:28:47.520 |-INFO [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
  329. 2017-08-18 09:28:47.788 |-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
  330. 2017-08-18 09:28:47.789 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters:
  331. 2017-08-18 09:28:48.022 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <== Total: 662
  332. 2017-08-18 09:28:48.024 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:662
  333. 2017-08-18 09:28:48.026 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Preparing: SELECT * FROM t_sys_organ
  334. 2017-08-18 09:28:48.027 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters:
  335. 2017-08-18 09:28:48.059 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <== Total: 34
  336. 2017-08-18 09:28:48.060 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:34
  337. 2017-08-18 09:28:48.109 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  338. 2017-08-18 09:28:48.110 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  339. 2017-08-18 09:28:48.141 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  340. 2017-08-18 09:28:48.142 |-INFO [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:662
  341. 2017-08-18 09:28:48.174 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
  342. 2017-08-18 09:28:48.233 |-INFO [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
  343. 2017-08-18 09:28:49.855 |-INFO [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
  344. 2017-08-18 09:28:49.879 |-INFO [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
  345. 2017-08-18 09:28:49.898 |-INFO [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 25.826 seconds (JVM running for 29.802)
  346. 2017-08-18 09:30:00.568 |-INFO [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
  347. 2017-08-18 09:30:00.569 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
  348. 2017-08-18 09:30:00.616 |-INFO [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 47 ms
  349. 2017-08-18 09:30:00.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
  350. 2017-08-18 09:30:00.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  351. 2017-08-18 09:30:01.028 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  352. 2017-08-18 09:30:01.062 |-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
  353. 2017-08-18 09:30:01.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  354. 2017-08-18 09:30:01.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  355. 2017-08-18 09:30:01.103 |-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=?)
  356. 2017-08-18 09:30:01.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  357. 2017-08-18 09:30:01.134 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  358. 2017-08-18 09:30:01.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  359. 2017-08-18 09:30:01.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  360. 2017-08-18 09:30:01.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  361. 2017-08-18 09:30:01.175 |-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
  362. 2017-08-18 09:30:01.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  363. 2017-08-18 09:30:01.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  364. 2017-08-18 09:30:01.211 |-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=?)
  365. 2017-08-18 09:30:01.212 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  366. 2017-08-18 09:30:01.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  367. 2017-08-18 09:30:03.049 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  368. 2017-08-18 09:30:03.050 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  369. 2017-08-18 09:30:03.127 |-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
  370. 2017-08-18 09:30:03.128 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  371. 2017-08-18 09:30:03.156 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  372. 2017-08-18 09:30:03.158 |-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
  373. 2017-08-18 09:30:03.159 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  374. 2017-08-18 09:30:03.187 |-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
  375. 2017-08-18 09:30:03.188 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  376. 2017-08-18 09:30:03.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  377. 2017-08-18 09:30:03.202 |-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=?)
  378. 2017-08-18 09:30:03.203 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  379. 2017-08-18 09:30:03.229 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  380. 2017-08-18 09:30:03.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  381. 2017-08-18 09:30:03.257 |-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
  382. 2017-08-18 09:30:03.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  383. 2017-08-18 09:30:03.291 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  384. 2017-08-18 09:30:03.294 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  385. 2017-08-18 09:30:03.296 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  386. 2017-08-18 09:30:03.312 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  387. 2017-08-18 09:30:03.317 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  388. 2017-08-18 09:30:03.330 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  389. 2017-08-18 09:30:03.384 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  390. 2017-08-18 09:30:03.387 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  391. 2017-08-18 09:30:03.449 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id
  392. 2017-08-18 09:30:03.450 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters:
  393. 2017-08-18 09:30:03.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <== Total: 55
  394. 2017-08-18 09:30:03.493 |-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
  395. 2017-08-18 09:30:03.494 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  396. 2017-08-18 09:30:03.540 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  397. 2017-08-18 09:30:03.660 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  398. 2017-08-18 09:30:03.676 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  399. 2017-08-18 09:30:03.694 |-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
  400. 2017-08-18 09:30:03.695 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  401. 2017-08-18 09:30:03.724 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  402. 2017-08-18 09:30:03.726 |-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
  403. 2017-08-18 09:30:03.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  404. 2017-08-18 09:30:03.729 |-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
  405. 2017-08-18 09:30:03.730 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  406. 2017-08-18 09:30:03.767 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  407. 2017-08-18 09:30:03.777 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  408. 2017-08-18 09:30:03.779 |-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=?)
  409. 2017-08-18 09:30:03.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  410. 2017-08-18 09:30:03.809 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  411. 2017-08-18 09:30:03.810 |-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
  412. 2017-08-18 09:30:03.811 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  413. 2017-08-18 09:30:03.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  414. 2017-08-18 09:30:03.854 |-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=?)
  415. 2017-08-18 09:30:03.855 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  416. 2017-08-18 09:30:03.884 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  417. 2017-08-18 09:30:03.884 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  418. 2017-08-18 09:30:03.887 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  419. 2017-08-18 09:30:03.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id
  420. 2017-08-18 09:30:03.941 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters:
  421. 2017-08-18 09:30:03.967 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  422. 2017-08-18 09:30:03.969 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  423. 2017-08-18 09:30:04.007 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <== Total: 3
  424. 2017-08-18 09:30:04.040 |-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
  425. 2017-08-18 09:30:04.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  426. 2017-08-18 09:30:04.081 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  427. 2017-08-18 09:30:04.166 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  428. 2017-08-18 09:30:04.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  429. 2017-08-18 09:30:04.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  430. 2017-08-18 09:30:04.226 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  431. 2017-08-18 09:30:04.227 |-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
  432. 2017-08-18 09:30:04.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  433. 2017-08-18 09:30:04.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  434. 2017-08-18 09:30:04.267 |-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=?)
  435. 2017-08-18 09:30:04.267 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  436. 2017-08-18 09:30:04.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  437. 2017-08-18 09:30:04.354 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  438. 2017-08-18 09:30:04.356 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  439. 2017-08-18 09:30:04.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  440. 2017-08-18 09:30:04.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  441. 2017-08-18 09:30:04.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  442. 2017-08-18 09:30:04.755 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  443. 2017-08-18 09:30:04.793 |-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
  444. 2017-08-18 09:30:04.794 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  445. 2017-08-18 09:30:04.825 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  446. 2017-08-18 09:30:04.826 |-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
  447. 2017-08-18 09:30:04.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  448. 2017-08-18 09:30:04.859 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  449. 2017-08-18 09:30:04.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=?)
  450. 2017-08-18 09:30:04.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  451. 2017-08-18 09:30:04.889 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  452. 2017-08-18 09:30:04.936 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  453. 2017-08-18 09:30:04.938 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  454. 2017-08-18 09:30:04.986 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=?
  455. 2017-08-18 09:30:04.987 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
  456. 2017-08-18 09:30:05.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <== Total: 8
  457. 2017-08-18 09:30:05.457 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  458. 2017-08-18 09:30:05.488 |-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
  459. 2017-08-18 09:30:05.489 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  460. 2017-08-18 09:30:05.517 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  461. 2017-08-18 09:30:05.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  462. 2017-08-18 09:30:05.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  463. 2017-08-18 09:30:05.566 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  464. 2017-08-18 09:30:05.567 |-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=?)
  465. 2017-08-18 09:30:05.568 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  466. 2017-08-18 09:30:05.596 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  467. 2017-08-18 09:30:05.670 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  468. 2017-08-18 09:30:05.675 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  469. 2017-08-18 09:30:05.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, 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
  470. 2017-08-18 09:30:05.885 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
  471. 2017-08-18 09:30:05.943 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <== Total: 1
  472. 2017-08-18 09:30:05.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, 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 ?,?
  473. 2017-08-18 09:30:05.947 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
  474. 2017-08-18 09:30:06.028 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <== Total: 10
  475. 2017-08-18 09:30:08.781 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  476. 2017-08-18 09:30:08.782 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  477. 2017-08-18 09:30:08.785 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  478. 2017-08-18 09:30:08.812 |-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
  479. 2017-08-18 09:30:08.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  480. 2017-08-18 09:30:08.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  481. 2017-08-18 09:30:08.817 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  482. 2017-08-18 09:30:08.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  483. 2017-08-18 09:30:08.845 |-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
  484. 2017-08-18 09:30:08.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  485. 2017-08-18 09:30:08.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  486. 2017-08-18 09:30:08.848 |-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
  487. 2017-08-18 09:30:08.849 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  488. 2017-08-18 09:30:08.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  489. 2017-08-18 09:30:08.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  490. 2017-08-18 09:30:08.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  491. 2017-08-18 09:30:08.883 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  492. 2017-08-18 09:30:08.884 |-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=?)
  493. 2017-08-18 09:30:08.885 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  494. 2017-08-18 09:30:08.897 |-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
  495. 2017-08-18 09:30:08.898 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  496. 2017-08-18 09:30:08.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  497. 2017-08-18 09:30:08.914 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  498. 2017-08-18 09:30:08.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  499. 2017-08-18 09:30:08.929 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  500. 2017-08-18 09:30:08.930 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  501. 2017-08-18 09:30:08.962 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  502. 2017-08-18 09:30:08.965 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  503. 2017-08-18 09:30:08.974 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  504. 2017-08-18 09:30:08.976 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  505. 2017-08-18 09:30:08.981 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  506. 2017-08-18 09:30:08.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  507. 2017-08-18 09:30:09.004 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  508. 2017-08-18 09:30:09.006 |-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=?)
  509. 2017-08-18 09:30:09.006 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  510. 2017-08-18 09:30:09.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  511. 2017-08-18 09:30:09.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  512. 2017-08-18 09:30:09.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  513. 2017-08-18 09:30:09.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long)
  514. 2017-08-18 09:30:09.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  515. 2017-08-18 09:30:09.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  516. 2017-08-18 09:30:09.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  517. 2017-08-18 09:30:09.116 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  518. 2017-08-18 09:30:09.118 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  519. 2017-08-18 09:30:09.126 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  520. 2017-08-18 09:30:09.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  521. 2017-08-18 09:30:09.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  522. 2017-08-18 09:30:09.189 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  523. 2017-08-18 09:34:22.879 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  524. 2017-08-18 09:34:22.884 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  525. 2017-08-18 09:34:22.889 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  526. 2017-08-18 09:34:23.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  527. 2017-08-18 09:34:23.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  528. 2017-08-18 09:34:23.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  529. 2017-08-18 09:34:23.070 |-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
  530. 2017-08-18 09:34:23.072 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  531. 2017-08-18 09:34:23.098 |-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
  532. 2017-08-18 09:34:23.098 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  533. 2017-08-18 09:34:23.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  534. 2017-08-18 09:34:23.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  535. 2017-08-18 09:34:23.133 |-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=?)
  536. 2017-08-18 09:34:23.133 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  537. 2017-08-18 09:34:23.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  538. 2017-08-18 09:34:23.213 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  539. 2017-08-18 09:34:23.216 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  540. 2017-08-18 09:34:23.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  541. 2017-08-18 09:34:23.237 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 4(Integer), 2017/08(String), 39(Long)
  542. 2017-08-18 09:34:23.267 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  543. 2017-08-18 09:34:23.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  544. 2017-08-18 09:34:23.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 4(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  545. 2017-08-18 09:34:23.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 8
  546. 2017-08-18 09:34:24.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  547. 2017-08-18 09:34:24.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  548. 2017-08-18 09:34:24.156 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  549. 2017-08-18 09:34:24.158 |-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=?)
  550. 2017-08-18 09:34:24.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  551. 2017-08-18 09:34:24.186 |-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
  552. 2017-08-18 09:34:24.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  553. 2017-08-18 09:34:24.189 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  554. 2017-08-18 09:34:24.216 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  555. 2017-08-18 09:34:24.217 |-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
  556. 2017-08-18 09:34:24.218 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  557. 2017-08-18 09:34:24.251 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  558. 2017-08-18 09:34:24.253 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  559. 2017-08-18 09:34:24.258 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  560. 2017-08-18 09:34:24.259 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  561. 2017-08-18 09:34:24.259 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  562. 2017-08-18 09:34:24.294 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  563. 2017-08-18 09:34:24.314 |-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=?)
  564. 2017-08-18 09:34:24.314 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  565. 2017-08-18 09:34:24.342 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  566. 2017-08-18 09:34:24.419 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  567. 2017-08-18 09:34:24.421 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  568. 2017-08-18 09:34:24.426 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  569. 2017-08-18 09:34:24.428 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  570. 2017-08-18 09:34:24.461 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  571. 2017-08-18 09:34:25.896 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  572. 2017-08-18 09:34:25.901 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  573. 2017-08-18 09:34:25.902 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  574. 2017-08-18 09:34:25.928 |-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
  575. 2017-08-18 09:34:25.930 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  576. 2017-08-18 09:34:25.934 |-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
  577. 2017-08-18 09:34:25.934 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  578. 2017-08-18 09:34:25.937 |-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
  579. 2017-08-18 09:34:25.938 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  580. 2017-08-18 09:34:25.964 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  581. 2017-08-18 09:34:25.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  582. 2017-08-18 09:34:25.967 |-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
  583. 2017-08-18 09:34:25.968 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  584. 2017-08-18 09:34:25.969 |-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
  585. 2017-08-18 09:34:25.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  586. 2017-08-18 09:34:25.970 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  587. 2017-08-18 09:34:26.000 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  588. 2017-08-18 09:34:26.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  589. 2017-08-18 09:34:26.002 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  590. 2017-08-18 09:34:26.004 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  591. 2017-08-18 09:34:26.005 |-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=?)
  592. 2017-08-18 09:34:26.006 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  593. 2017-08-18 09:34:26.034 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  594. 2017-08-18 09:34:26.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  595. 2017-08-18 09:34:26.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  596. 2017-08-18 09:34:26.036 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  597. 2017-08-18 09:34:26.041 |-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=?)
  598. 2017-08-18 09:34:26.042 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  599. 2017-08-18 09:34:26.065 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  600. 2017-08-18 09:34:26.077 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  601. 2017-08-18 09:34:26.092 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  602. 2017-08-18 09:34:26.094 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  603. 2017-08-18 09:34:26.099 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  604. 2017-08-18 09:34:26.100 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  605. 2017-08-18 09:34:26.126 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  606. 2017-08-18 09:34:26.129 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  607. 2017-08-18 09:34:26.137 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  608. 2017-08-18 09:34:26.144 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  609. 2017-08-18 09:34:26.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  610. 2017-08-18 09:34:26.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  611. 2017-08-18 09:34:26.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  612. 2017-08-18 09:34:26.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long)
  613. 2017-08-18 09:34:26.179 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  614. 2017-08-18 09:34:26.190 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  615. 2017-08-18 09:34:26.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  616. 2017-08-18 09:34:26.214 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  617. 2017-08-18 09:34:26.215 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  618. 2017-08-18 09:34:26.250 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  619. 2017-08-18 09:34:27.414 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  620. 2017-08-18 09:34:27.415 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  621. 2017-08-18 09:34:27.422 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  622. 2017-08-18 09:34:27.445 |-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
  623. 2017-08-18 09:34:27.446 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  624. 2017-08-18 09:34:27.446 |-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
  625. 2017-08-18 09:34:27.447 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  626. 2017-08-18 09:34:27.453 |-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
  627. 2017-08-18 09:34:27.454 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  628. 2017-08-18 09:34:27.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  629. 2017-08-18 09:34:27.475 |-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
  630. 2017-08-18 09:34:27.476 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  631. 2017-08-18 09:34:27.478 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  632. 2017-08-18 09:34:27.480 |-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
  633. 2017-08-18 09:34:27.480 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  634. 2017-08-18 09:34:27.481 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  635. 2017-08-18 09:34:27.483 |-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
  636. 2017-08-18 09:34:27.484 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  637. 2017-08-18 09:34:27.506 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  638. 2017-08-18 09:34:27.507 |-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=?)
  639. 2017-08-18 09:34:27.508 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  640. 2017-08-18 09:34:27.512 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  641. 2017-08-18 09:34:27.513 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  642. 2017-08-18 09:34:27.514 |-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=?)
  643. 2017-08-18 09:34:27.514 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  644. 2017-08-18 09:34:27.515 |-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=?)
  645. 2017-08-18 09:34:27.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  646. 2017-08-18 09:34:27.534 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  647. 2017-08-18 09:34:27.543 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  648. 2017-08-18 09:34:27.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  649. 2017-08-18 09:34:27.580 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  650. 2017-08-18 09:34:27.582 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  651. 2017-08-18 09:34:27.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  652. 2017-08-18 09:34:27.585 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  653. 2017-08-18 09:34:27.600 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  654. 2017-08-18 09:34:27.602 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  655. 2017-08-18 09:34:27.616 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  656. 2017-08-18 09:34:27.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long)
  657. 2017-08-18 09:34:27.623 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  658. 2017-08-18 09:34:27.626 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  659. 2017-08-18 09:34:27.631 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  660. 2017-08-18 09:34:27.633 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  661. 2017-08-18 09:34:27.638 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  662. 2017-08-18 09:34:27.644 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  663. 2017-08-18 09:34:27.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  664. 2017-08-18 09:34:27.647 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  665. 2017-08-18 09:34:27.666 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  666. 2017-08-18 09:34:27.681 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  667. 2017-08-18 09:34:28.571 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  668. 2017-08-18 09:34:28.573 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  669. 2017-08-18 09:34:28.585 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  670. 2017-08-18 09:34:28.603 |-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
  671. 2017-08-18 09:34:28.604 |-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
  672. 2017-08-18 09:34:28.604 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  673. 2017-08-18 09:34:28.604 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  674. 2017-08-18 09:34:28.616 |-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
  675. 2017-08-18 09:34:28.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  676. 2017-08-18 09:34:28.633 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  677. 2017-08-18 09:34:28.635 |-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
  678. 2017-08-18 09:34:28.635 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  679. 2017-08-18 09:34:28.636 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  680. 2017-08-18 09:34:28.637 |-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
  681. 2017-08-18 09:34:28.638 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  682. 2017-08-18 09:34:28.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  683. 2017-08-18 09:34:28.646 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  684. 2017-08-18 09:34:28.647 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  685. 2017-08-18 09:34:28.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  686. 2017-08-18 09:34:28.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  687. 2017-08-18 09:34:28.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  688. 2017-08-18 09:34:28.670 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  689. 2017-08-18 09:34:28.671 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  690. 2017-08-18 09:34:28.672 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  691. 2017-08-18 09:34:28.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  692. 2017-08-18 09:34:28.678 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  693. 2017-08-18 09:34:28.680 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  694. 2017-08-18 09:34:28.694 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  695. 2017-08-18 09:34:28.702 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  696. 2017-08-18 09:34:28.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  697. 2017-08-18 09:34:28.741 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  698. 2017-08-18 09:34:28.746 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  699. 2017-08-18 09:34:28.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  700. 2017-08-18 09:34:28.758 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  701. 2017-08-18 09:34:28.765 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  702. 2017-08-18 09:34:28.767 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  703. 2017-08-18 09:34:28.769 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  704. 2017-08-18 09:34:28.770 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  705. 2017-08-18 09:34:28.793 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  706. 2017-08-18 09:34:28.796 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  707. 2017-08-18 09:34:28.796 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  708. 2017-08-18 09:34:28.807 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  709. 2017-08-18 09:34:28.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long)
  710. 2017-08-18 09:34:28.821 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  711. 2017-08-18 09:34:28.839 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  712. 2017-08-18 09:34:28.842 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  713. 2017-08-18 09:34:28.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  714. 2017-08-18 09:34:28.878 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  715. 2017-08-18 09:34:30.734 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  716. 2017-08-18 09:34:30.743 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  717. 2017-08-18 09:34:30.746 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  718. 2017-08-18 09:34:30.765 |-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
  719. 2017-08-18 09:34:30.766 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  720. 2017-08-18 09:34:30.774 |-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
  721. 2017-08-18 09:34:30.775 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  722. 2017-08-18 09:34:30.776 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  723. 2017-08-18 09:34:30.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  724. 2017-08-18 09:34:30.794 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  725. 2017-08-18 09:34:30.796 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  726. 2017-08-18 09:34:30.796 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  727. 2017-08-18 09:34:30.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  728. 2017-08-18 09:34:30.805 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  729. 2017-08-18 09:34:30.806 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  730. 2017-08-18 09:34:30.806 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  731. 2017-08-18 09:34:30.806 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  732. 2017-08-18 09:34:30.806 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  733. 2017-08-18 09:34:30.828 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  734. 2017-08-18 09:34:30.830 |-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=?)
  735. 2017-08-18 09:34:30.831 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  736. 2017-08-18 09:34:30.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  737. 2017-08-18 09:34:30.836 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  738. 2017-08-18 09:34:30.837 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  739. 2017-08-18 09:34:30.838 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  740. 2017-08-18 09:34:30.840 |-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=?)
  741. 2017-08-18 09:34:30.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  742. 2017-08-18 09:34:30.860 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  743. 2017-08-18 09:34:30.864 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  744. 2017-08-18 09:34:30.867 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  745. 2017-08-18 09:34:30.907 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  746. 2017-08-18 09:34:30.909 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  747. 2017-08-18 09:34:30.912 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  748. 2017-08-18 09:34:30.913 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  749. 2017-08-18 09:34:30.928 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  750. 2017-08-18 09:34:30.930 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  751. 2017-08-18 09:34:30.941 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  752. 2017-08-18 09:34:30.942 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long)
  753. 2017-08-18 09:34:30.962 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  754. 2017-08-18 09:34:30.964 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  755. 2017-08-18 09:34:30.968 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  756. 2017-08-18 09:34:30.969 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  757. 2017-08-18 09:34:30.976 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  758. 2017-08-18 09:34:30.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  759. 2017-08-18 09:34:30.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  760. 2017-08-18 09:34:30.986 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  761. 2017-08-18 09:34:31.003 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  762. 2017-08-18 09:34:31.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  763. 2017-08-18 09:34:31.578 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  764. 2017-08-18 09:34:31.581 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  765. 2017-08-18 09:34:31.586 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  766. 2017-08-18 09:34:31.610 |-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
  767. 2017-08-18 09:34:31.611 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  768. 2017-08-18 09:34:31.610 |-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
  769. 2017-08-18 09:34:31.613 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  770. 2017-08-18 09:34:31.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  771. 2017-08-18 09:34:31.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  772. 2017-08-18 09:34:31.640 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  773. 2017-08-18 09:34:31.641 |-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
  774. 2017-08-18 09:34:31.641 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  775. 2017-08-18 09:34:31.642 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  776. 2017-08-18 09:34:31.643 |-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
  777. 2017-08-18 09:34:31.644 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  778. 2017-08-18 09:34:31.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  779. 2017-08-18 09:34:31.646 |-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
  780. 2017-08-18 09:34:31.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  781. 2017-08-18 09:34:31.671 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  782. 2017-08-18 09:34:31.672 |-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=?)
  783. 2017-08-18 09:34:31.672 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  784. 2017-08-18 09:34:31.673 |-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=?)
  785. 2017-08-18 09:34:31.673 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  786. 2017-08-18 09:34:31.672 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  787. 2017-08-18 09:34:31.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  788. 2017-08-18 09:34:31.680 |-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=?)
  789. 2017-08-18 09:34:31.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  790. 2017-08-18 09:34:31.700 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  791. 2017-08-18 09:34:31.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  792. 2017-08-18 09:34:31.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  793. 2017-08-18 09:34:31.747 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  794. 2017-08-18 09:34:31.749 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  795. 2017-08-18 09:34:31.751 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  796. 2017-08-18 09:34:31.752 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  797. 2017-08-18 09:34:31.768 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  798. 2017-08-18 09:34:31.770 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  799. 2017-08-18 09:34:31.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  800. 2017-08-18 09:34:31.775 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  801. 2017-08-18 09:34:31.791 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  802. 2017-08-18 09:34:31.792 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  803. 2017-08-18 09:34:31.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  804. 2017-08-18 09:34:31.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long)
  805. 2017-08-18 09:34:31.809 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  806. 2017-08-18 09:34:31.823 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  807. 2017-08-18 09:34:31.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  808. 2017-08-18 09:34:31.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  809. 2017-08-18 09:34:31.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  810. 2017-08-18 09:34:31.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  811. 2017-08-18 09:34:32.117 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  812. 2017-08-18 09:34:32.122 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  813. 2017-08-18 09:34:32.122 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  814. 2017-08-18 09:34:32.148 |-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
  815. 2017-08-18 09:34:32.149 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  816. 2017-08-18 09:34:32.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  817. 2017-08-18 09:34:32.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  818. 2017-08-18 09:34:32.165 |-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
  819. 2017-08-18 09:34:32.166 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  820. 2017-08-18 09:34:32.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  821. 2017-08-18 09:34:32.178 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  822. 2017-08-18 09:34:32.178 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  823. 2017-08-18 09:34:32.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  824. 2017-08-18 09:34:32.185 |-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
  825. 2017-08-18 09:34:32.186 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  826. 2017-08-18 09:34:32.195 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  827. 2017-08-18 09:34:32.196 |-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
  828. 2017-08-18 09:34:32.196 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  829. 2017-08-18 09:34:32.207 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  830. 2017-08-18 09:34:32.208 |-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=?)
  831. 2017-08-18 09:34:32.208 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  832. 2017-08-18 09:34:32.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  833. 2017-08-18 09:34:32.223 |-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=?)
  834. 2017-08-18 09:34:32.224 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  835. 2017-08-18 09:34:32.226 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  836. 2017-08-18 09:34:32.227 |-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=?)
  837. 2017-08-18 09:34:32.227 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  838. 2017-08-18 09:34:32.239 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  839. 2017-08-18 09:34:32.259 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  840. 2017-08-18 09:34:32.263 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  841. 2017-08-18 09:34:32.289 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  842. 2017-08-18 09:34:32.291 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  843. 2017-08-18 09:34:32.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  844. 2017-08-18 09:34:32.297 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  845. 2017-08-18 09:34:32.324 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  846. 2017-08-18 09:34:32.326 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  847. 2017-08-18 09:34:32.328 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  848. 2017-08-18 09:34:32.329 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  849. 2017-08-18 09:34:32.352 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  850. 2017-08-18 09:34:32.354 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  851. 2017-08-18 09:34:32.364 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  852. 2017-08-18 09:34:32.365 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 4(Integer), 2017/08(String), 39(Long)
  853. 2017-08-18 09:34:32.367 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  854. 2017-08-18 09:34:32.382 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  855. 2017-08-18 09:34:32.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  856. 2017-08-18 09:34:32.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  857. 2017-08-18 09:34:32.397 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 4(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  858. 2017-08-18 09:34:32.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 8
  859. 2017-08-18 09:34:34.295 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  860. 2017-08-18 09:34:34.301 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  861. 2017-08-18 09:34:34.301 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  862. 2017-08-18 09:34:34.326 |-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
  863. 2017-08-18 09:34:34.327 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  864. 2017-08-18 09:34:34.330 |-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
  865. 2017-08-18 09:34:34.331 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  866. 2017-08-18 09:34:34.345 |-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
  867. 2017-08-18 09:34:34.345 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  868. 2017-08-18 09:34:34.357 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  869. 2017-08-18 09:34:34.359 |-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
  870. 2017-08-18 09:34:34.359 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  871. 2017-08-18 09:34:34.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  872. 2017-08-18 09:34:34.364 |-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
  873. 2017-08-18 09:34:34.365 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  874. 2017-08-18 09:34:34.372 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  875. 2017-08-18 09:34:34.373 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  876. 2017-08-18 09:34:34.374 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  877. 2017-08-18 09:34:34.391 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  878. 2017-08-18 09:34:34.393 |-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=?)
  879. 2017-08-18 09:34:34.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  880. 2017-08-18 09:34:34.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  881. 2017-08-18 09:34:34.397 |-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=?)
  882. 2017-08-18 09:34:34.398 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  883. 2017-08-18 09:34:34.403 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  884. 2017-08-18 09:34:34.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=?)
  885. 2017-08-18 09:34:34.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  886. 2017-08-18 09:34:34.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  887. 2017-08-18 09:34:34.424 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  888. 2017-08-18 09:34:34.431 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  889. 2017-08-18 09:34:34.468 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  890. 2017-08-18 09:34:34.470 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  891. 2017-08-18 09:34:34.474 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  892. 2017-08-18 09:34:34.475 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  893. 2017-08-18 09:34:34.488 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  894. 2017-08-18 09:34:34.490 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  895. 2017-08-18 09:34:34.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  896. 2017-08-18 09:34:34.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  897. 2017-08-18 09:34:34.518 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  898. 2017-08-18 09:34:34.519 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  899. 2017-08-18 09:34:34.529 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  900. 2017-08-18 09:34:34.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long)
  901. 2017-08-18 09:34:34.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  902. 2017-08-18 09:34:34.555 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  903. 2017-08-18 09:34:34.559 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  904. 2017-08-18 09:34:34.560 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  905. 2017-08-18 09:34:34.561 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 3(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  906. 2017-08-18 09:34:34.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  907. 2017-08-18 09:34:34.929 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  908. 2017-08-18 09:34:34.933 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  909. 2017-08-18 09:34:34.935 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  910. 2017-08-18 09:34:34.959 |-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
  911. 2017-08-18 09:34:34.960 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  912. 2017-08-18 09:34:34.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  913. 2017-08-18 09:34:34.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  914. 2017-08-18 09:34:34.977 |-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
  915. 2017-08-18 09:34:34.977 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  916. 2017-08-18 09:34:34.987 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  917. 2017-08-18 09:34:34.988 |-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
  918. 2017-08-18 09:34:34.988 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  919. 2017-08-18 09:34:34.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  920. 2017-08-18 09:34:34.995 |-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
  921. 2017-08-18 09:34:34.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  922. 2017-08-18 09:34:35.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  923. 2017-08-18 09:34:35.006 |-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
  924. 2017-08-18 09:34:35.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  925. 2017-08-18 09:34:35.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  926. 2017-08-18 09:34:35.019 |-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=?)
  927. 2017-08-18 09:34:35.019 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  928. 2017-08-18 09:34:35.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  929. 2017-08-18 09:34:35.027 |-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=?)
  930. 2017-08-18 09:34:35.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  931. 2017-08-18 09:34:35.042 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  932. 2017-08-18 09:34:35.043 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  933. 2017-08-18 09:34:35.043 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  934. 2017-08-18 09:34:35.046 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  935. 2017-08-18 09:34:35.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  936. 2017-08-18 09:34:35.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  937. 2017-08-18 09:34:35.091 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  938. 2017-08-18 09:34:35.093 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  939. 2017-08-18 09:34:35.094 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  940. 2017-08-18 09:34:35.095 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  941. 2017-08-18 09:34:35.116 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  942. 2017-08-18 09:34:35.118 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  943. 2017-08-18 09:34:35.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  944. 2017-08-18 09:34:35.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  945. 2017-08-18 09:34:35.139 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  946. 2017-08-18 09:34:35.141 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  947. 2017-08-18 09:34:35.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  948. 2017-08-18 09:34:35.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long)
  949. 2017-08-18 09:34:35.155 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  950. 2017-08-18 09:34:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  951. 2017-08-18 09:34:35.181 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  952. 2017-08-18 09:34:35.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  953. 2017-08-18 09:34:35.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 2(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  954. 2017-08-18 09:34:35.213 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  955. 2017-08-18 09:34:35.593 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  956. 2017-08-18 09:34:35.602 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  957. 2017-08-18 09:34:35.605 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  958. 2017-08-18 09:34:35.626 |-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
  959. 2017-08-18 09:34:35.626 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  960. 2017-08-18 09:34:35.630 |-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
  961. 2017-08-18 09:34:35.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  962. 2017-08-18 09:34:35.655 |-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
  963. 2017-08-18 09:34:35.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  964. 2017-08-18 09:34:35.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  965. 2017-08-18 09:34:35.661 |-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
  966. 2017-08-18 09:34:35.661 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  967. 2017-08-18 09:34:35.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  968. 2017-08-18 09:34:35.670 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  969. 2017-08-18 09:34:35.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  970. 2017-08-18 09:34:35.683 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  971. 2017-08-18 09:34:35.684 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  972. 2017-08-18 09:34:35.685 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  973. 2017-08-18 09:34:35.690 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  974. 2017-08-18 09:34:35.691 |-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=?)
  975. 2017-08-18 09:34:35.692 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  976. 2017-08-18 09:34:35.703 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  977. 2017-08-18 09:34:35.704 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  978. 2017-08-18 09:34:35.705 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  979. 2017-08-18 09:34:35.715 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  980. 2017-08-18 09:34:35.716 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  981. 2017-08-18 09:34:35.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  982. 2017-08-18 09:34:35.720 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  983. 2017-08-18 09:34:35.733 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  984. 2017-08-18 09:34:35.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  985. 2017-08-18 09:34:35.765 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  986. 2017-08-18 09:34:35.767 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  987. 2017-08-18 09:34:35.770 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno
  988. 2017-08-18 09:34:35.771 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  989. 2017-08-18 09:34:35.789 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  990. 2017-08-18 09:34:35.790 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  991. 2017-08-18 09:34:35.792 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Preparing: SELECT * FROM check_item ORDER BY parent_id ASC , id ASC
  992. 2017-08-18 09:34:35.793 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| ==> Parameters:
  993. 2017-08-18 09:34:35.811 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  994. 2017-08-18 09:34:35.813 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  995. 2017-08-18 09:34:35.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Preparing: SELECT count(0) FROM (SELECT * FROM other_check WHERE 1 = 1 AND check_type = ? AND check_time_name = ? AND dept_id = ?) o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id
  996. 2017-08-18 09:34:35.824 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long)
  997. 2017-08-18 09:34:35.827 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 24
  998. 2017-08-18 09:34:35.830 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.CheckItemDao.getAll [159] -| <== Total: 142
  999. 2017-08-18 09:34:35.853 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId_COUNT [159] -| <== Total: 1
  1000. 2017-08-18 09:34:35.854 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Preparing: SELECT o.id,o.dept_id,o.user_id,o.check_person_id,o.check_score,o.check_item_id,o.remark,o.check_type,o.file_ids,o.check_num,o.check_time, o.check_time_name,o.delete_flag,o.update_time , t.ORGANNAME organname,u.TRUENAME username,c.name check_item_name FROM (SELECT * FROM other_check where 1=1 and check_type = ? AND check_time_name = ? AND dept_id = ? )o LEFT JOIN t_sys_organ t ON o.dept_id = t.id LEFT JOIN t_sys_users u ON o.user_id = u.id LEFT JOIN check_item c ON o.check_item_id = c.id limit ?,?
  1001. 2017-08-18 09:34:35.855 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| ==> Parameters: 1(Integer), 2017/08(String), 39(Long), 0(Integer), 10(Integer)
  1002. 2017-08-18 09:34:35.888 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.CheckOtherDao.getCheckByDeptId [159] -| <== Total: 10
  1003. 2017-08-18 09:37:59.329 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1004. 2017-08-18 09:37:59.331 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1005. 2017-08-18 09:37:59.491 |-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
  1006. 2017-08-18 09:37:59.492 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1007. 2017-08-18 09:37:59.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1008. 2017-08-18 09:37:59.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1009. 2017-08-18 09:37:59.520 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1010. 2017-08-18 09:37:59.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1011. 2017-08-18 09:37:59.552 |-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
  1012. 2017-08-18 09:37:59.553 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1013. 2017-08-18 09:37:59.554 |-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
  1014. 2017-08-18 09:37:59.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1015. 2017-08-18 09:37:59.584 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1016. 2017-08-18 09:37:59.585 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1017. 2017-08-18 09:37:59.586 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1018. 2017-08-18 09:37:59.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1019. 2017-08-18 09:37:59.588 |-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=?)
  1020. 2017-08-18 09:37:59.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1021. 2017-08-18 09:37:59.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1022. 2017-08-18 09:37:59.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1023. 2017-08-18 09:37:59.686 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1024. 2017-08-18 09:37:59.698 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1025. 2017-08-18 09:37:59.703 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1026. 2017-08-18 09:37:59.712 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1027. 2017-08-18 09:37:59.745 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1028. 2017-08-18 09:37:59.747 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1029. 2017-08-18 09:37:59.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1030. 2017-08-18 09:37:59.834 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1031. 2017-08-18 09:37:59.835 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1032. 2017-08-18 09:37:59.916 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1033. 2017-08-18 09:37:59.926 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1034. 2017-08-18 09:37:59.927 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1035. 2017-08-18 09:38:00.030 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1036. 2017-08-18 09:38:00.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1037. 2017-08-18 09:38:00.036 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1038. 2017-08-18 09:38:01.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1039. 2017-08-18 09:38:01.297 |-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
  1040. 2017-08-18 09:38:01.298 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1041. 2017-08-18 09:38:01.330 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1042. 2017-08-18 09:38:01.527 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1043. 2017-08-18 09:38:01.600 |-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
  1044. 2017-08-18 09:38:01.601 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1045. 2017-08-18 09:38:01.632 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1046. 2017-08-18 09:38:01.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1047. 2017-08-18 09:38:01.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1048. 2017-08-18 09:38:01.667 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1049. 2017-08-18 09:38:01.668 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1050. 2017-08-18 09:38:01.669 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1051. 2017-08-18 09:38:01.696 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1052. 2017-08-18 09:38:01.742 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1053. 2017-08-18 09:38:01.744 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1054. 2017-08-18 09:38:01.754 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1055. 2017-08-18 09:38:01.755 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1056. 2017-08-18 09:38:01.788 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1057. 2017-08-18 09:38:01.791 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1058. 2017-08-18 09:38:01.792 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1059. 2017-08-18 09:38:01.870 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1060. 2017-08-18 09:38:01.872 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1061. 2017-08-18 09:38:01.874 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1062. 2017-08-18 09:38:01.949 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1063. 2017-08-18 09:38:05.333 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1064. 2017-08-18 09:38:05.398 |-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
  1065. 2017-08-18 09:38:05.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1066. 2017-08-18 09:38:05.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1067. 2017-08-18 09:38:05.477 |-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
  1068. 2017-08-18 09:38:05.478 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1069. 2017-08-18 09:38:05.611 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1070. 2017-08-18 09:38:05.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1071. 2017-08-18 09:38:05.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1072. 2017-08-18 09:38:05.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1073. 2017-08-18 09:38:05.815 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1074. 2017-08-18 09:38:05.818 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1075. 2017-08-18 09:38:05.821 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1
  1076. 2017-08-18 09:38:05.822 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1077. 2017-08-18 09:38:05.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 34
  1078. 2017-08-18 09:38:05.894 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1079. 2017-08-18 09:38:05.977 |-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
  1080. 2017-08-18 09:38:05.978 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1081. 2017-08-18 09:38:06.036 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1082. 2017-08-18 09:38:06.038 |-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
  1083. 2017-08-18 09:38:06.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1084. 2017-08-18 09:38:06.068 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1085. 2017-08-18 09:38:06.091 |-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=?)
  1086. 2017-08-18 09:38:06.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1087. 2017-08-18 09:38:06.192 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1088. 2017-08-18 09:38:06.339 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1089. 2017-08-18 09:38:06.341 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1090. 2017-08-18 09:38:06.347 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1091. 2017-08-18 09:38:06.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1092. 2017-08-18 09:38:06.440 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1093. 2017-08-18 09:38:06.478 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1094. 2017-08-18 09:38:06.595 |-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
  1095. 2017-08-18 09:38:06.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1096. 2017-08-18 09:38:06.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1097. 2017-08-18 09:38:06.688 |-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
  1098. 2017-08-18 09:38:06.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1099. 2017-08-18 09:38:06.775 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1100. 2017-08-18 09:38:06.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1101. 2017-08-18 09:38:06.778 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1102. 2017-08-18 09:38:06.867 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1103. 2017-08-18 09:38:07.001 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1104. 2017-08-18 09:38:07.003 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1105. 2017-08-18 09:38:07.008 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1106. 2017-08-18 09:38:07.009 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1107. 2017-08-18 09:38:07.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1108. 2017-08-18 09:38:07.090 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.user_id , t.class_type
  1109. 2017-08-18 09:38:07.091 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1110. 2017-08-18 09:38:07.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1218
  1111. 2017-08-18 09:38:11.146 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1112. 2017-08-18 09:38:11.177 |-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
  1113. 2017-08-18 09:38:11.178 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1114. 2017-08-18 09:38:11.210 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1115. 2017-08-18 09:38:11.212 |-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
  1116. 2017-08-18 09:38:11.213 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1117. 2017-08-18 09:38:11.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1118. 2017-08-18 09:38:11.243 |-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=?)
  1119. 2017-08-18 09:38:11.243 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1120. 2017-08-18 09:38:11.271 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1121. 2017-08-18 09:38:11.323 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1122. 2017-08-18 09:38:11.325 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1123. 2017-08-18 09:38:11.327 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1
  1124. 2017-08-18 09:38:11.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1125. 2017-08-18 09:38:11.359 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 34
  1126. 2017-08-18 09:38:11.381 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1127. 2017-08-18 09:38:11.412 |-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
  1128. 2017-08-18 09:38:11.413 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1129. 2017-08-18 09:38:11.443 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1130. 2017-08-18 09:38:11.444 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1131. 2017-08-18 09:38:11.445 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1132. 2017-08-18 09:38:11.481 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1133. 2017-08-18 09:38:11.482 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1134. 2017-08-18 09:38:11.482 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1135. 2017-08-18 09:38:11.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1136. 2017-08-18 09:38:11.557 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1137. 2017-08-18 09:38:11.560 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1138. 2017-08-18 09:38:11.566 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1139. 2017-08-18 09:38:11.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1140. 2017-08-18 09:38:11.676 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1141. 2017-08-18 09:38:11.747 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1142. 2017-08-18 09:38:11.785 |-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
  1143. 2017-08-18 09:38:11.786 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1144. 2017-08-18 09:38:11.829 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1145. 2017-08-18 09:38:11.830 |-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
  1146. 2017-08-18 09:38:11.830 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1147. 2017-08-18 09:38:11.859 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1148. 2017-08-18 09:38:11.860 |-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=?)
  1149. 2017-08-18 09:38:11.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1150. 2017-08-18 09:38:11.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1151. 2017-08-18 09:38:11.948 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1152. 2017-08-18 09:38:11.950 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1153. 2017-08-18 09:38:11.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1154. 2017-08-18 09:38:11.961 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1155. 2017-08-18 09:38:12.069 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1156. 2017-08-18 09:38:12.072 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.user_id , t.class_type
  1157. 2017-08-18 09:38:12.073 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1158. 2017-08-18 09:38:12.311 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1172
  1159. 2017-08-18 09:38:13.257 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1160. 2017-08-18 09:38:13.288 |-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
  1161. 2017-08-18 09:38:13.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1162. 2017-08-18 09:38:13.367 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1163. 2017-08-18 09:38:13.368 |-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
  1164. 2017-08-18 09:38:13.368 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1165. 2017-08-18 09:38:13.465 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1166. 2017-08-18 09:38:13.466 |-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=?)
  1167. 2017-08-18 09:38:13.467 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1168. 2017-08-18 09:38:13.499 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1169. 2017-08-18 09:38:13.546 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1170. 2017-08-18 09:38:13.547 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1171. 2017-08-18 09:38:13.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1172. 2017-08-18 09:38:13.557 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1173. 2017-08-18 09:38:13.652 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1174. 2017-08-18 09:38:13.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Preparing: SELECT COUNT(t.appeal_dept) AS appeal_num ,t.appeal_dept AS dept_id,t.appeal_result FROM check_appeal t INNER JOIN check_task ct ON t.task_id = ct.id WHERE 1=1 and t.task_id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) and t.task_id not in (select id from check_task where check_task.check_status = 22) AND t.appeal_time >= ? AND t.appeal_time < ? GROUP BY t.appeal_dept , t.appeal_result ORDER BY t.appeal_dept
  1175. 2017-08-18 09:38:13.658 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1176. 2017-08-18 09:38:13.775 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| <== Total: 26
  1177. 2017-08-18 09:38:15.456 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1178. 2017-08-18 09:38:15.488 |-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
  1179. 2017-08-18 09:38:15.488 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1180. 2017-08-18 09:38:15.519 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1181. 2017-08-18 09:38:15.520 |-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
  1182. 2017-08-18 09:38:15.525 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1183. 2017-08-18 09:38:15.555 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1184. 2017-08-18 09:38:15.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1185. 2017-08-18 09:38:15.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1186. 2017-08-18 09:38:15.582 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1187. 2017-08-18 09:38:15.628 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1188. 2017-08-18 09:38:15.630 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1189. 2017-08-18 09:38:15.633 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Preparing: SELECT * FROM t_sys_users where organid=29 and status>0 and positionid = 2
  1190. 2017-08-18 09:38:15.634 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| ==> Parameters:
  1191. 2017-08-18 09:38:15.665 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllCheckmans [159] -| <== Total: 6
  1192. 2017-08-18 09:38:15.747 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1193. 2017-08-18 09:38:15.755 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1194. 2017-08-18 09:38:15.779 |-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
  1195. 2017-08-18 09:38:15.779 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1196. 2017-08-18 09:38:15.785 |-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
  1197. 2017-08-18 09:38:15.785 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1198. 2017-08-18 09:38:15.810 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1199. 2017-08-18 09:38:15.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1200. 2017-08-18 09:38:15.811 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1201. 2017-08-18 09:38:15.815 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1202. 2017-08-18 09:38:15.816 |-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
  1203. 2017-08-18 09:38:15.817 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1204. 2017-08-18 09:38:15.840 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1205. 2017-08-18 09:38:15.841 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1206. 2017-08-18 09:38:15.842 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1207. 2017-08-18 09:38:15.848 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1208. 2017-08-18 09:38:15.849 |-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=?)
  1209. 2017-08-18 09:38:15.850 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1210. 2017-08-18 09:38:15.868 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1211. 2017-08-18 09:38:15.879 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1212. 2017-08-18 09:38:15.913 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1213. 2017-08-18 09:38:15.914 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1214. 2017-08-18 09:38:15.938 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Preparing: SELECT count(0) FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT task_id, max(update_time) AS update_time FROM check_task_status WHERE check_status = 4 OR check_status = 14 GROUP BY task_id) cst ON t.id = cst.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.id NOT IN (SELECT id FROM (SELECT check_task.*, deleted_user.starttime AS u_delet_time FROM check_task 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 check_task.checked_person = deleted_user.id) v_task WHERE v_task.u_delet_time IS NOT NULL AND v_task.end_time > v_task.u_delet_time) AND t.check_time >= ? AND t.check_time < ? AND cs.check_item_score IS NOT NULL
  1215. 2017-08-18 09:38:15.940 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1216. 2017-08-18 09:38:15.947 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1217. 2017-08-18 09:38:15.948 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1218. 2017-08-18 09:38:15.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Preparing: SELECT COUNT(1) AS all_task_num , sum( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time) ) AS all_check_minute , COUNT(DISTINCT(t.checked_person)) AS checked_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ?
  1219. 2017-08-18 09:38:15.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1220. 2017-08-18 09:38:16.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo1 [159] -| <== Total: 1
  1221. 2017-08-18 09:38:16.074 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Preparing: SELECT SUM(cs.check_item_score ) AS all_checked_score , COUNT(DISTINCT cs.checked_person) AS checked_people_num , COUNT(DISTINCT cs.task_id) AS checked_task_num , count(1) AS all_checkman FROM check_score cs LEFT JOIN v_check_task t ON t.id = cs.task_id AND t.check_status != 22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) WHERE t.check_time >= ? AND t.check_time < ?
  1222. 2017-08-18 09:38:16.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1223. 2017-08-18 09:38:16.144 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <== Total: 1
  1224. 2017-08-18 09:38:16.146 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id ,cst.update_time,t.id as task_id FROM v_check_task t LEFT JOIN check_score cs ON t.id = cs.task_id left join ( select task_id,max(update_time) as update_time from check_task_status where check_status =4 or check_status = 14 GROUP BY task_id ) cst on t.id = cst.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.check_time >= ? AND t.check_time < ? AND cs.check_item_score IS NOT NULL limit ?,?
  1225. 2017-08-18 09:38:16.152 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
  1226. 2017-08-18 09:38:16.244 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo2 [159] -| <== Total: 1
  1227. 2017-08-18 09:38:16.245 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Preparing: SELECT COUNT(1) AS unable_task_num FROM v_check_task t WHERE t.check_time >= ? AND t.check_time < ? AND t.check_status = 22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1228. 2017-08-18 09:38:16.246 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1229. 2017-08-18 09:38:16.394 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <== Total: 10
  1230. 2017-08-18 09:38:16.433 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckManInfo3 [159] -| <== Total: 1
  1231. 2017-08-18 09:38:17.863 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1232. 2017-08-18 09:38:17.895 |-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
  1233. 2017-08-18 09:38:17.895 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1234. 2017-08-18 09:38:17.922 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1235. 2017-08-18 09:38:17.923 |-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
  1236. 2017-08-18 09:38:17.924 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1237. 2017-08-18 09:38:17.953 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1238. 2017-08-18 09:38:17.954 |-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=?)
  1239. 2017-08-18 09:38:17.955 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1240. 2017-08-18 09:38:17.982 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1241. 2017-08-18 09:38:18.029 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1242. 2017-08-18 09:38:18.030 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1243. 2017-08-18 09:38:18.034 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1244. 2017-08-18 09:38:18.034 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1245. 2017-08-18 09:38:18.062 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1246. 2017-08-18 09:38:18.063 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Preparing: SELECT COUNT(t.appeal_dept) AS appeal_num ,t.appeal_dept AS dept_id,t.appeal_result FROM check_appeal t INNER JOIN check_task ct ON t.task_id = ct.id WHERE 1=1 and t.task_id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) and t.task_id not in (select id from check_task where check_task.check_status = 22) AND t.appeal_time >= ? AND t.appeal_time < ? GROUP BY t.appeal_dept , t.appeal_result ORDER BY t.appeal_dept
  1247. 2017-08-18 09:38:18.064 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1248. 2017-08-18 09:38:18.132 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckAppealNum [159] -| <== Total: 26
  1249. 2017-08-18 09:38:19.996 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1250. 2017-08-18 09:38:20.142 |-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
  1251. 2017-08-18 09:38:20.143 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1252. 2017-08-18 09:38:20.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1253. 2017-08-18 09:38:20.261 |-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
  1254. 2017-08-18 09:38:20.261 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1255. 2017-08-18 09:38:20.295 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1256. 2017-08-18 09:38:20.296 |-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=?)
  1257. 2017-08-18 09:38:20.296 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1258. 2017-08-18 09:38:20.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1259. 2017-08-18 09:38:20.370 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1260. 2017-08-18 09:38:20.372 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1261. 2017-08-18 09:38:20.376 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1
  1262. 2017-08-18 09:38:20.377 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1263. 2017-08-18 09:38:20.448 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 34
  1264. 2017-08-18 09:38:20.465 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1265. 2017-08-18 09:38:20.562 |-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
  1266. 2017-08-18 09:38:20.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1267. 2017-08-18 09:38:20.660 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1268. 2017-08-18 09:38:20.674 |-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
  1269. 2017-08-18 09:38:20.675 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1270. 2017-08-18 09:38:20.704 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1271. 2017-08-18 09:38:20.705 |-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=?)
  1272. 2017-08-18 09:38:20.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1273. 2017-08-18 09:38:20.733 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1274. 2017-08-18 09:38:20.839 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1275. 2017-08-18 09:38:20.840 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1276. 2017-08-18 09:38:20.843 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1277. 2017-08-18 09:38:20.844 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1278. 2017-08-18 09:38:21.260 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1279. 2017-08-18 09:38:21.308 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1280. 2017-08-18 09:38:21.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1281. 2017-08-18 09:38:21.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1282. 2017-08-18 09:38:21.426 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1283. 2017-08-18 09:38:21.427 |-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
  1284. 2017-08-18 09:38:21.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1285. 2017-08-18 09:38:21.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1286. 2017-08-18 09:38:21.461 |-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=?)
  1287. 2017-08-18 09:38:21.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1288. 2017-08-18 09:38:21.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1289. 2017-08-18 09:38:21.536 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1290. 2017-08-18 09:38:21.538 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1291. 2017-08-18 09:38:21.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1292. 2017-08-18 09:38:21.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1293. 2017-08-18 09:38:21.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1294. 2017-08-18 09:38:21.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.user_id , t.class_type
  1295. 2017-08-18 09:38:21.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1296. 2017-08-18 09:38:21.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGatherGroupByWorkType [159] -| <== Total: 1172
  1297. 2017-08-18 09:38:23.802 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1298. 2017-08-18 09:38:23.887 |-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
  1299. 2017-08-18 09:38:23.888 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1300. 2017-08-18 09:38:23.980 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1301. 2017-08-18 09:38:23.981 |-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
  1302. 2017-08-18 09:38:23.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1303. 2017-08-18 09:38:24.024 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1304. 2017-08-18 09:38:24.025 |-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=?)
  1305. 2017-08-18 09:38:24.026 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1306. 2017-08-18 09:38:24.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1307. 2017-08-18 09:38:24.104 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1308. 2017-08-18 09:38:24.106 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1309. 2017-08-18 09:38:24.108 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1
  1310. 2017-08-18 09:38:24.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1311. 2017-08-18 09:38:24.137 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 34
  1312. 2017-08-18 09:38:24.145 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1313. 2017-08-18 09:38:24.179 |-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
  1314. 2017-08-18 09:38:24.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1315. 2017-08-18 09:38:24.206 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1316. 2017-08-18 09:38:24.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1317. 2017-08-18 09:38:24.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1318. 2017-08-18 09:38:24.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1319. 2017-08-18 09:38:24.237 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1320. 2017-08-18 09:38:24.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1321. 2017-08-18 09:38:24.268 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1322. 2017-08-18 09:38:24.332 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1323. 2017-08-18 09:38:24.333 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1324. 2017-08-18 09:38:24.336 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1325. 2017-08-18 09:38:24.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1326. 2017-08-18 09:38:24.422 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1327. 2017-08-18 09:38:24.482 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1328. 2017-08-18 09:38:24.514 |-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
  1329. 2017-08-18 09:38:24.514 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1330. 2017-08-18 09:38:24.544 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1331. 2017-08-18 09:38:24.545 |-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
  1332. 2017-08-18 09:38:24.546 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1333. 2017-08-18 09:38:24.575 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1334. 2017-08-18 09:38:24.576 |-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=?)
  1335. 2017-08-18 09:38:24.576 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1336. 2017-08-18 09:38:24.602 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1337. 2017-08-18 09:38:24.653 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1338. 2017-08-18 09:38:24.654 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1339. 2017-08-18 09:38:24.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1340. 2017-08-18 09:38:24.658 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1341. 2017-08-18 09:38:24.735 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1342. 2017-08-18 09:38:24.736 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.user_id , t.class_type
  1343. 2017-08-18 09:38:24.737 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1344. 2017-08-18 09:38:24.889 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1218
  1345. 2017-08-18 09:38:29.630 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1346. 2017-08-18 09:38:29.701 |-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
  1347. 2017-08-18 09:38:29.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1348. 2017-08-18 09:38:29.730 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1349. 2017-08-18 09:38:29.731 |-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
  1350. 2017-08-18 09:38:29.732 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1351. 2017-08-18 09:38:29.761 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1352. 2017-08-18 09:38:29.762 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1353. 2017-08-18 09:38:29.763 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1354. 2017-08-18 09:38:29.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1355. 2017-08-18 09:38:29.890 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1356. 2017-08-18 09:38:29.894 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1357. 2017-08-18 09:38:29.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ?
  1358. 2017-08-18 09:38:29.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1359. 2017-08-18 09:38:29.966 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1360. 2017-08-18 09:38:29.985 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1361. 2017-08-18 09:38:30.017 |-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
  1362. 2017-08-18 09:38:30.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1363. 2017-08-18 09:38:30.044 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1364. 2017-08-18 09:38:30.045 |-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
  1365. 2017-08-18 09:38:30.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1366. 2017-08-18 09:38:30.114 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1367. 2017-08-18 09:38:30.115 |-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=?)
  1368. 2017-08-18 09:38:30.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1369. 2017-08-18 09:38:30.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1370. 2017-08-18 09:38:30.326 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1371. 2017-08-18 09:38:30.329 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1372. 2017-08-18 09:38:30.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1373. 2017-08-18 09:38:30.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1374. 2017-08-18 09:38:30.604 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1375. 2017-08-18 09:38:30.655 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1376. 2017-08-18 09:38:30.707 |-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
  1377. 2017-08-18 09:38:30.708 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1378. 2017-08-18 09:38:30.736 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1379. 2017-08-18 09:38:30.737 |-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
  1380. 2017-08-18 09:38:30.738 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1381. 2017-08-18 09:38:30.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1382. 2017-08-18 09:38:30.769 |-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=?)
  1383. 2017-08-18 09:38:30.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1384. 2017-08-18 09:38:30.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1385. 2017-08-18 09:38:30.935 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1386. 2017-08-18 09:38:30.937 |-INFO [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1387. 2017-08-18 09:38:30.944 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ?
  1388. 2017-08-18 09:38:30.945 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1389. 2017-08-18 09:38:31.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1390. 2017-08-18 09:38:31.009 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1391. 2017-08-18 09:38:31.010 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1392. 2017-08-18 09:38:31.078 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 187
  1393. 2017-08-18 09:38:31.098 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class_unregular t LEFT JOIN check_task ct ON (t.id = ct.user_class_unregular_id OR ( ct.start_time > t.start_time AND ct.end_time < t.end_time ) ) AND ct.check_status != 22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class_unregular.*,deleted_user.starttime as u_delet_time from sys_user_class_unregular 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 sys_user_class_unregular.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.dept_id IN ( ? , ? , ? , ? , ? , ? , ? ) ORDER BY t.work_date
  1394. 2017-08-18 09:38:31.099 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1395. 2017-08-18 09:38:32.834 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1396. 2017-08-18 09:38:32.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1397. 2017-08-18 09:38:32.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1398. 2017-08-18 09:38:32.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1399. 2017-08-18 09:38:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1400. 2017-08-18 09:38:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1401. 2017-08-18 09:38:32.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1402. 2017-08-18 09:38:32.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1403. 2017-08-18 09:38:32.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1404. 2017-08-18 09:38:32.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1405. 2017-08-18 09:38:33.005 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1406. 2017-08-18 09:38:33.006 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1407. 2017-08-18 09:38:33.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ?
  1408. 2017-08-18 09:38:33.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1409. 2017-08-18 09:38:33.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1410. 2017-08-18 09:38:33.044 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1411. 2017-08-18 09:38:33.076 |-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
  1412. 2017-08-18 09:38:33.077 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1413. 2017-08-18 09:38:33.107 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1414. 2017-08-18 09:38:33.108 |-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
  1415. 2017-08-18 09:38:33.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1416. 2017-08-18 09:38:33.141 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1417. 2017-08-18 09:38:33.142 |-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=?)
  1418. 2017-08-18 09:38:33.143 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1419. 2017-08-18 09:38:33.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1420. 2017-08-18 09:38:33.218 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1421. 2017-08-18 09:38:33.221 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1422. 2017-08-18 09:38:33.223 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1423. 2017-08-18 09:38:33.224 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1424. 2017-08-18 09:38:33.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1425. 2017-08-18 09:38:33.356 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1426. 2017-08-18 09:38:33.388 |-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
  1427. 2017-08-18 09:38:33.388 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1428. 2017-08-18 09:38:33.415 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1429. 2017-08-18 09:38:33.416 |-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
  1430. 2017-08-18 09:38:33.417 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1431. 2017-08-18 09:38:33.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1432. 2017-08-18 09:38:33.449 |-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=?)
  1433. 2017-08-18 09:38:33.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1434. 2017-08-18 09:38:33.478 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1435. 2017-08-18 09:38:33.527 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1436. 2017-08-18 09:38:33.529 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1437. 2017-08-18 09:38:33.531 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ?
  1438. 2017-08-18 09:38:33.532 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
  1439. 2017-08-18 09:38:33.560 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 7
  1440. 2017-08-18 09:38:33.562 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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 in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno
  1441. 2017-08-18 09:38:33.563 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 30(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1442. 2017-08-18 09:38:33.604 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 187
  1443. 2017-08-18 09:38:33.606 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class t LEFT JOIN check_task ct ON t.id = ct.user_class_id AND ct.check_status != 22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.dept_id IN ( ? , ? , ? , ? , ? , ? , ? ) ORDER BY t.work_date , t.user_id
  1444. 2017-08-18 09:38:33.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1445. 2017-08-18 09:38:36.673 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <== Total: 1561
  1446. 2017-08-18 09:38:36.675 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.dept_id IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY t.user_id
  1447. 2017-08-18 09:38:36.676 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1448. 2017-08-18 09:38:36.759 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <== Total: 143
  1449. 2017-08-18 09:38:36.761 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| ==> Preparing: select * from check_task where check_status!=22 and id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND start_time >= ? AND end_time < ? order by checked_person
  1450. 2017-08-18 09:38:36.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1451. 2017-08-18 09:38:37.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| <== Total: 1994
  1452. 2017-08-18 09:38:37.298 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1453. 2017-08-18 09:38:37.301 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1454. 2017-08-18 09:38:37.330 |-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
  1455. 2017-08-18 09:38:37.331 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1456. 2017-08-18 09:38:37.331 |-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
  1457. 2017-08-18 09:38:37.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1458. 2017-08-18 09:38:37.358 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1459. 2017-08-18 09:38:37.359 |-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
  1460. 2017-08-18 09:38:37.360 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1461. 2017-08-18 09:38:37.367 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1462. 2017-08-18 09:38:37.391 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1463. 2017-08-18 09:38:37.393 |-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=?)
  1464. 2017-08-18 09:38:37.394 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1465. 2017-08-18 09:38:37.393 |-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
  1466. 2017-08-18 09:38:37.395 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1467. 2017-08-18 09:38:37.424 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1468. 2017-08-18 09:38:37.425 |-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=?)
  1469. 2017-08-18 09:38:37.426 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1470. 2017-08-18 09:38:37.432 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1471. 2017-08-18 09:38:37.452 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1472. 2017-08-18 09:38:37.476 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1473. 2017-08-18 09:38:37.478 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1474. 2017-08-18 09:38:37.501 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1475. 2017-08-18 09:38:37.502 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1476. 2017-08-18 09:38:37.507 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1477. 2017-08-18 09:38:37.508 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1478. 2017-08-18 09:38:37.593 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1479. 2017-08-18 09:38:37.594 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1480. 2017-08-18 09:38:37.595 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1481. 2017-08-18 09:38:37.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1482. 2017-08-18 09:38:37.673 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1483. 2017-08-18 09:38:37.674 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1484. 2017-08-18 09:38:37.772 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1485. 2017-08-18 09:38:37.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1486. 2017-08-18 09:38:37.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1487. 2017-08-18 09:38:38.607 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1488. 2017-08-18 09:38:38.674 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1489. 2017-08-18 09:38:38.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1490. 2017-08-18 09:38:38.706 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1491. 2017-08-18 09:38:39.244 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWork [159] -| <== Total: 4017
  1492. 2017-08-18 09:38:39.249 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class_unregular t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class_unregular.*,deleted_user.starttime as u_delet_time from sys_user_class_unregular 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 sys_user_class_unregular.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? AND t.dept_id IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY t.user_id
  1493. 2017-08-18 09:38:39.252 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
  1494. 2017-08-18 09:38:39.426 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsUnregularWorkGather [159] -| <== Total: 168
  1495. 2017-08-18 09:38:39.428 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| ==> Preparing: select * from check_task where check_status!=22 and id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND start_time >= ? AND end_time < ? order by checked_person
  1496. 2017-08-18 09:38:39.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1497. 2017-08-18 09:38:40.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.getAllTasklist [159] -| <== Total: 1994
  1498. 2017-08-18 09:38:41.577 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1499. 2017-08-18 09:38:41.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1500. 2017-08-18 09:38:41.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1501. 2017-08-18 09:38:41.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1502. 2017-08-18 09:38:41.745 |-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
  1503. 2017-08-18 09:38:41.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1504. 2017-08-18 09:38:41.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1505. 2017-08-18 09:38:41.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1506. 2017-08-18 09:38:41.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1507. 2017-08-18 09:38:41.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1508. 2017-08-18 09:38:41.943 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1509. 2017-08-18 09:38:41.945 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1510. 2017-08-18 09:38:41.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1511. 2017-08-18 09:38:41.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1512. 2017-08-18 09:38:42.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1513. 2017-08-18 09:38:42.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1514. 2017-08-18 09:38:42.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1515. 2017-08-18 09:38:42.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1516. 2017-08-18 09:38:42.154 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1517. 2017-08-18 09:38:42.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1518. 2017-08-18 09:38:42.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1519. 2017-08-18 09:38:47.425 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1520. 2017-08-18 09:38:47.458 |-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
  1521. 2017-08-18 09:38:47.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1522. 2017-08-18 09:38:47.489 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1523. 2017-08-18 09:38:47.490 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1524. 2017-08-18 09:38:47.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1525. 2017-08-18 09:38:47.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1526. 2017-08-18 09:38:47.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1527. 2017-08-18 09:38:47.523 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1528. 2017-08-18 09:38:47.550 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1529. 2017-08-18 09:38:47.595 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1530. 2017-08-18 09:38:47.597 |-INFO [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1531. 2017-08-18 09:38:47.601 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1532. 2017-08-18 09:38:47.602 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1533. 2017-08-18 09:38:47.633 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1534. 2017-08-18 09:38:47.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1535. 2017-08-18 09:38:47.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1536. 2017-08-18 09:38:47.721 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1537. 2017-08-18 09:38:47.723 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1538. 2017-08-18 09:38:47.723 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1539. 2017-08-18 09:38:47.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1540. 2017-08-18 09:38:47.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1541. 2017-08-18 09:38:47.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1542. 2017-08-18 09:38:47.873 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1543. 2017-08-18 09:38:47.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1544. 2017-08-18 09:38:47.875 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1545. 2017-08-18 09:38:47.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1546. 2017-08-18 09:38:47.973 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1547. 2017-08-18 09:38:47.974 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1548. 2017-08-18 09:38:48.810 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1549. 2017-08-18 09:38:48.826 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1550. 2017-08-18 09:38:48.826 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1551. 2017-08-18 09:38:48.858 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1552. 2017-08-18 09:38:48.871 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1553. 2017-08-18 09:38:48.872 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1554. 2017-08-18 09:38:49.254 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523
  1555. 2017-08-18 09:39:10.355 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1556. 2017-08-18 09:39:10.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1557. 2017-08-18 09:39:10.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1558. 2017-08-18 09:39:10.519 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1559. 2017-08-18 09:39:10.520 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1560. 2017-08-18 09:39:10.521 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1561. 2017-08-18 09:39:10.607 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1562. 2017-08-18 09:39:10.608 |-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=?)
  1563. 2017-08-18 09:39:10.608 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1564. 2017-08-18 09:39:10.635 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1565. 2017-08-18 09:39:10.679 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1566. 2017-08-18 09:39:10.680 |-INFO [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1567. 2017-08-18 09:39:10.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1568. 2017-08-18 09:39:10.685 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1569. 2017-08-18 09:39:10.775 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1570. 2017-08-18 09:39:10.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1571. 2017-08-18 09:39:10.779 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1572. 2017-08-18 09:39:10.938 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1573. 2017-08-18 09:39:10.942 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1574. 2017-08-18 09:39:10.944 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1575. 2017-08-18 09:39:11.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1576. 2017-08-18 09:39:33.552 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1577. 2017-08-18 09:39:33.584 |-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
  1578. 2017-08-18 09:39:33.585 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1579. 2017-08-18 09:39:33.616 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1580. 2017-08-18 09:39:33.618 |-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
  1581. 2017-08-18 09:39:33.619 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1582. 2017-08-18 09:39:33.649 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1583. 2017-08-18 09:39:33.650 |-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=?)
  1584. 2017-08-18 09:39:33.650 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1585. 2017-08-18 09:39:33.677 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1586. 2017-08-18 09:39:33.725 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1587. 2017-08-18 09:39:33.726 |-INFO [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1588. 2017-08-18 09:39:33.730 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1589. 2017-08-18 09:39:33.731 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1590. 2017-08-18 09:39:33.763 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1591. 2017-08-18 09:39:33.764 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1592. 2017-08-18 09:39:33.765 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1593. 2017-08-18 09:39:33.842 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1594. 2017-08-18 09:39:33.843 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1595. 2017-08-18 09:39:33.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1596. 2017-08-18 09:39:33.915 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1597. 2017-08-18 09:39:33.916 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1598. 2017-08-18 09:39:33.917 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1599. 2017-08-18 09:39:33.993 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1600. 2017-08-18 09:39:33.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1601. 2017-08-18 09:39:33.996 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1602. 2017-08-18 09:39:34.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1603. 2017-08-18 09:39:34.255 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1604. 2017-08-18 09:39:34.256 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1605. 2017-08-18 09:39:35.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1606. 2017-08-18 09:39:35.780 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1607. 2017-08-18 09:39:35.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1608. 2017-08-18 09:39:35.840 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1609. 2017-08-18 09:39:35.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1610. 2017-08-18 09:39:35.849 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1611. 2017-08-18 09:39:36.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523
  1612. 2017-08-18 09:39:49.151 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1613. 2017-08-18 09:39:49.191 |-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
  1614. 2017-08-18 09:39:49.191 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1615. 2017-08-18 09:39:49.226 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1616. 2017-08-18 09:39:49.227 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1617. 2017-08-18 09:39:49.228 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1618. 2017-08-18 09:39:49.257 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1619. 2017-08-18 09:39:49.258 |-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=?)
  1620. 2017-08-18 09:39:49.259 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1621. 2017-08-18 09:39:49.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1622. 2017-08-18 09:39:49.334 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1623. 2017-08-18 09:39:49.336 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1624. 2017-08-18 09:39:49.340 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1625. 2017-08-18 09:39:49.341 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1626. 2017-08-18 09:39:49.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1627. 2017-08-18 09:39:49.379 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1628. 2017-08-18 09:39:49.380 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1629. 2017-08-18 09:39:49.459 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1630. 2017-08-18 09:39:49.462 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1631. 2017-08-18 09:39:49.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1632. 2017-08-18 09:39:49.539 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1633. 2017-08-18 09:39:55.354 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1634. 2017-08-18 09:39:55.385 |-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
  1635. 2017-08-18 09:39:55.386 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1636. 2017-08-18 09:39:55.417 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1637. 2017-08-18 09:39:55.418 |-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
  1638. 2017-08-18 09:39:55.418 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1639. 2017-08-18 09:39:55.472 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1640. 2017-08-18 09:39:55.473 |-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=?)
  1641. 2017-08-18 09:39:55.474 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1642. 2017-08-18 09:39:55.571 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1643. 2017-08-18 09:39:55.675 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1644. 2017-08-18 09:39:55.676 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1645. 2017-08-18 09:39:55.679 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1646. 2017-08-18 09:39:55.680 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1647. 2017-08-18 09:39:55.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1648. 2017-08-18 09:39:55.790 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1649. 2017-08-18 09:39:55.791 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1650. 2017-08-18 09:39:55.869 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1651. 2017-08-18 09:39:55.872 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1652. 2017-08-18 09:39:55.873 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1653. 2017-08-18 09:39:55.948 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1654. 2017-08-18 09:39:55.949 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1655. 2017-08-18 09:39:55.950 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1656. 2017-08-18 09:39:56.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1657. 2017-08-18 09:39:56.096 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1658. 2017-08-18 09:39:56.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1659. 2017-08-18 09:39:56.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1660. 2017-08-18 09:39:56.250 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1661. 2017-08-18 09:39:56.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1662. 2017-08-18 09:39:57.253 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1663. 2017-08-18 09:39:57.277 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1664. 2017-08-18 09:39:57.277 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1665. 2017-08-18 09:39:57.308 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1666. 2017-08-18 09:39:57.314 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1667. 2017-08-18 09:39:57.315 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1668. 2017-08-18 09:39:57.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523
  1669. 2017-08-18 09:40:09.675 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1670. 2017-08-18 09:40:09.800 |-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
  1671. 2017-08-18 09:40:09.801 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1672. 2017-08-18 09:40:09.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1673. 2017-08-18 09:40:09.923 |-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
  1674. 2017-08-18 09:40:09.924 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1675. 2017-08-18 09:40:10.059 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1676. 2017-08-18 09:40:10.061 |-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=?)
  1677. 2017-08-18 09:40:10.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1678. 2017-08-18 09:40:10.132 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1679. 2017-08-18 09:40:10.180 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1680. 2017-08-18 09:40:10.182 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1681. 2017-08-18 09:40:10.189 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1
  1682. 2017-08-18 09:40:10.190 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters:
  1683. 2017-08-18 09:40:10.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <== Total: 34
  1684. 2017-08-18 09:40:10.232 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1685. 2017-08-18 09:40:10.344 |-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
  1686. 2017-08-18 09:40:10.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1687. 2017-08-18 09:40:10.377 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1688. 2017-08-18 09:40:10.379 |-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
  1689. 2017-08-18 09:40:10.379 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1690. 2017-08-18 09:40:10.410 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1691. 2017-08-18 09:40:10.411 |-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=?)
  1692. 2017-08-18 09:40:10.412 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1693. 2017-08-18 09:40:10.527 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1694. 2017-08-18 09:40:10.668 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1695. 2017-08-18 09:40:10.670 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1696. 2017-08-18 09:40:10.674 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1697. 2017-08-18 09:40:10.675 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1698. 2017-08-18 09:40:10.804 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1699. 2017-08-18 09:40:10.841 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1700. 2017-08-18 09:40:10.899 |-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
  1701. 2017-08-18 09:40:10.899 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1702. 2017-08-18 09:40:10.972 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1703. 2017-08-18 09:40:10.973 |-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
  1704. 2017-08-18 09:40:10.974 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1705. 2017-08-18 09:40:11.063 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1706. 2017-08-18 09:40:11.066 |-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=?)
  1707. 2017-08-18 09:40:11.067 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1708. 2017-08-18 09:40:11.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1709. 2017-08-18 09:40:11.300 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1710. 2017-08-18 09:40:11.302 |-INFO [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1711. 2017-08-18 09:40:11.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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
  1712. 2017-08-18 09:40:11.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1713. 2017-08-18 09:40:11.524 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <== Total: 566
  1714. 2017-08-18 09:40:11.526 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL and t.id not in (select id from ( select sys_user_class.*,deleted_user.starttime as u_delet_time from sys_user_class 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 sys_user_class.user_id = deleted_user.id ) v_user_class where v_user_class.u_delet_time is not null and v_user_class.end_time > v_user_class.u_delet_time ) AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time < ? GROUP BY t.user_id , t.class_type
  1715. 2017-08-18 09:40:11.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1716. 2017-08-18 09:40:12.041 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1717. 2017-08-18 09:40:12.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <== Total: 1218
  1718. 2017-08-18 09:40:12.074 |-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
  1719. 2017-08-18 09:40:12.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1720. 2017-08-18 09:40:12.168 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1721. 2017-08-18 09:40:12.171 |-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
  1722. 2017-08-18 09:40:12.172 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1723. 2017-08-18 09:40:12.279 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1724. 2017-08-18 09:40:12.281 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1725. 2017-08-18 09:40:12.282 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1726. 2017-08-18 09:40:12.392 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1727. 2017-08-18 09:40:12.521 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1728. 2017-08-18 09:40:12.522 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1729. 2017-08-18 09:40:12.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1730. 2017-08-18 09:40:12.526 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1731. 2017-08-18 09:40:12.658 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1732. 2017-08-18 09:40:12.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1733. 2017-08-18 09:40:12.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1734. 2017-08-18 09:40:12.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1735. 2017-08-18 09:40:12.770 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1736. 2017-08-18 09:40:12.771 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1737. 2017-08-18 09:40:12.919 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1738. 2017-08-18 09:40:12.921 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1739. 2017-08-18 09:40:12.924 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1740. 2017-08-18 09:40:13.057 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1741. 2017-08-18 09:40:13.060 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1742. 2017-08-18 09:40:13.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1743. 2017-08-18 09:40:13.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1744. 2017-08-18 09:40:13.194 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1745. 2017-08-18 09:40:13.196 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1746. 2017-08-18 09:40:14.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1747. 2017-08-18 09:40:14.416 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1748. 2017-08-18 09:40:14.418 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1749. 2017-08-18 09:40:14.542 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1750. 2017-08-18 09:40:14.549 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1751. 2017-08-18 09:40:14.550 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1752. 2017-08-18 09:40:14.788 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1753. 2017-08-18 09:40:14.876 |-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
  1754. 2017-08-18 09:40:14.876 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1755. 2017-08-18 09:40:14.976 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1756. 2017-08-18 09:40:14.994 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523
  1757. 2017-08-18 09:40:15.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id
  1758. 2017-08-18 09:40:15.094 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1759. 2017-08-18 09:40:15.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1760. 2017-08-18 09:40:15.218 |-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=?)
  1761. 2017-08-18 09:40:15.221 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1762. 2017-08-18 09:40:15.333 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1763. 2017-08-18 09:40:15.395 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1764. 2017-08-18 09:40:15.397 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1765. 2017-08-18 09:40:15.402 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1766. 2017-08-18 09:40:15.403 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1767. 2017-08-18 09:40:15.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1768. 2017-08-18 09:40:15.437 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1769. 2017-08-18 09:40:15.438 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1770. 2017-08-18 09:40:15.514 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1771. 2017-08-18 09:40:15.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1772. 2017-08-18 09:40:15.522 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1773. 2017-08-18 09:40:15.596 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1774. 2017-08-18 09:46:43.273 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1775. 2017-08-18 09:46:45.401 |-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
  1776. 2017-08-18 09:46:45.402 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1777. 2017-08-18 09:46:45.436 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1778. 2017-08-18 09:46:45.462 |-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
  1779. 2017-08-18 09:46:45.463 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1780. 2017-08-18 09:46:45.492 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1781. 2017-08-18 09:46:45.494 |-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=?)
  1782. 2017-08-18 09:46:45.494 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1783. 2017-08-18 09:46:45.520 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1784. 2017-08-18 09:46:45.577 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1785. 2017-08-18 09:46:45.579 |-INFO [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1786. 2017-08-18 09:46:45.584 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1787. 2017-08-18 09:46:45.585 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1788. 2017-08-18 09:46:45.620 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1789. 2017-08-18 09:46:45.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1790. 2017-08-18 09:46:45.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1791. 2017-08-18 09:46:45.722 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1792. 2017-08-18 09:46:45.724 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1793. 2017-08-18 09:46:45.725 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1794. 2017-08-18 09:46:45.798 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1795. 2017-08-18 09:46:45.800 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1796. 2017-08-18 09:46:45.801 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1797. 2017-08-18 09:46:45.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1798. 2017-08-18 09:46:45.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1799. 2017-08-18 09:46:45.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1800. 2017-08-18 09:46:46.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1801. 2017-08-18 09:46:46.072 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1802. 2017-08-18 09:46:46.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1803. 2017-08-18 09:46:46.911 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1804. 2017-08-18 09:46:46.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1805. 2017-08-18 09:46:46.934 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1806. 2017-08-18 09:46:46.964 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1807. 2017-08-18 09:46:46.971 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1808. 2017-08-18 09:46:46.973 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1809. 2017-08-18 09:46:47.378 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523
  1810. 2017-08-18 09:46:47.672 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1811. 2017-08-18 09:46:47.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0
  1812. 2017-08-18 09:46:47.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1813. 2017-08-18 09:46:47.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1814. 2017-08-18 09:46:47.861 |-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
  1815. 2017-08-18 09:46:47.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1816. 2017-08-18 09:46:47.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1817. 2017-08-18 09:46:47.968 |-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=?)
  1818. 2017-08-18 09:46:47.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1819. 2017-08-18 09:46:48.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1820. 2017-08-18 09:46:48.214 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1821. 2017-08-18 09:46:48.216 |-INFO [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1822. 2017-08-18 09:46:48.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1823. 2017-08-18 09:46:48.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1824. 2017-08-18 09:46:48.315 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1825. 2017-08-18 09:46:48.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1826. 2017-08-18 09:46:48.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1827. 2017-08-18 09:46:48.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1828. 2017-08-18 09:46:48.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Preparing: SELECT u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name,s.id FROM ( SELECT t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id LEFT JOIN t_sys_users uu on t.checked_person = uu.id WHERE 1=1 AND ct.check_status!=22 AND t.check_item_score is not null and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? AND uu.positionid in ( ? , ? , ? , ? ) ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY dept_id,item_id
  1829. 2017-08-18 09:46:48.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1830. 2017-08-18 09:46:48.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedPersonScoreDetail [159] -| <== Total: 85
  1831. 2017-08-18 09:47:03.539 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1832. 2017-08-18 09:47:03.540 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1833. 2017-08-18 09:47:03.568 |-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
  1834. 2017-08-18 09:47:03.568 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1835. 2017-08-18 09:47:03.597 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1836. 2017-08-18 09:47:03.598 |-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
  1837. 2017-08-18 09:47:03.599 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1838. 2017-08-18 09:47:03.628 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1839. 2017-08-18 09:47:03.630 |-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=?)
  1840. 2017-08-18 09:47:03.631 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1841. 2017-08-18 09:47:03.650 |-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
  1842. 2017-08-18 09:47:03.650 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1843. 2017-08-18 09:47:03.657 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1844. 2017-08-18 09:47:03.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1845. 2017-08-18 09:47:03.679 |-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
  1846. 2017-08-18 09:47:03.680 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1847. 2017-08-18 09:47:03.712 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1848. 2017-08-18 09:47:03.713 |-INFO [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1849. 2017-08-18 09:47:03.720 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1850. 2017-08-18 09:47:03.721 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?)
  1851. 2017-08-18 09:47:03.722 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1852. 2017-08-18 09:47:03.748 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1853. 2017-08-18 09:47:03.793 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1854. 2017-08-18 09:47:03.796 |-INFO [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1855. 2017-08-18 09:47:03.800 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1856. 2017-08-18 09:47:03.809 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1857. 2017-08-18 09:47:03.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1858. 2017-08-18 09:47:03.885 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1859. 2017-08-18 09:47:03.886 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1860. 2017-08-18 09:47:03.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1861. 2017-08-18 09:47:03.968 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1862. 2017-08-18 09:47:03.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1863. 2017-08-18 09:47:04.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1864. 2017-08-18 09:47:04.091 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1865. 2017-08-18 09:47:04.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1866. 2017-08-18 09:47:05.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1867. 2017-08-18 09:47:05.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id
  1868. 2017-08-18 09:47:05.074 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1869. 2017-08-18 09:47:05.104 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1870. 2017-08-18 09:47:47.578 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1871. 2017-08-18 09:47:47.609 |-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
  1872. 2017-08-18 09:47:47.609 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: chenrj(String)
  1873. 2017-08-18 09:47:47.694 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <== Total: 1
  1874. 2017-08-18 09:47:47.695 |-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
  1875. 2017-08-18 09:47:47.695 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
  1876. 2017-08-18 09:47:47.776 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <== Total: 55
  1877. 2017-08-18 09:47:47.777 |-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=?)
  1878. 2017-08-18 09:47:47.778 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
  1879. 2017-08-18 09:47:47.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <== Total: 1
  1880. 2017-08-18 09:47:47.847 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user chenrj, setting security context
  1881. 2017-08-18 09:47:47.849 |-INFO [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication chenrj
  1882. 2017-08-18 09:47:47.851 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.id not in ( select t_s_y.id 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 and date_sub(t_p.starttime,interval 1 hour) <= ? ) AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID
  1883. 2017-08-18 09:47:47.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1884. 2017-08-18 09:47:47.920 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <== Total: 21
  1885. 2017-08-18 09:47:47.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Preparing: SELECT COUNT(DISTINCT( t.checked_person )) AS checked_people_num , COUNT(t.checked_person) AS checked_num ,t.checked_dept AS dept_id FROM check_task t left join t_sys_users u on t.checked_person = u.id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? AND u.positionid in ( ? , ? , ? , ? ) GROUP BY t.checked_dept
  1886. 2017-08-18 09:47:47.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1887. 2017-08-18 09:47:48.097 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckNum [159] -| <== Total: 21
  1888. 2017-08-18 09:47:48.100 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Preparing: SELECT u.checked_person AS user_id , u.checked_dept AS dept_id ,u.parent_id AS item_id ,sum(u.score) AS score ,s.name FROM ( SELECT t.checked_person , t.checked_dept,ci.parent_id, t.check_item_score AS score FROM check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id LEFT JOIN check_task ct ON ct.id = t.task_id WHERE 1=1 and ct.check_status!=22 and ct.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND ct.start_time >= ? AND ct.end_time < ? ) u LEFT JOIN check_item s ON u.parent_id = s.id GROUP BY checked_person,id
  1889. 2017-08-18 09:47:48.101 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1890. 2017-08-18 09:47:48.244 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectStatistics [159] -| <== Total: 253
  1891. 2017-08-18 09:47:48.246 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Preparing: SELECT COUNT(1) AS checked_num , t.checked_person AS user_id FROM check_task t WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_person
  1892. 2017-08-18 09:47:48.248 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1893. 2017-08-18 09:47:48.333 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedTimes [159] -| <== Total: 523
  1894. 2017-08-18 09:47:48.335 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id 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.positionid in ( ? , ? , ? , ? ) order by workno
  1895. 2017-08-18 09:47:48.336 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
  1896. 2017-08-18 09:47:48.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAllUsers [159] -| <== Total: 575
  1897. 2017-08-18 09:47:48.428 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Preparing: SELECT a.*,b.id as id1 ,b.update_time as update_time1,b.content,b.pics,b.videos,b.task_id,b.check_item_id,b.checkman as checkman1,b.checked_person as checked_person1 ,b.checked_dept as checked_dept1,b.remark as remark1,b.check_item_score from check_task a LEFT JOIN check_score b on a.id=b.task_id where a.monitor_user_id != -1 and a.monitor_user_id != 0 and a.start_time >= ? and a.end_time < ? and a.check_status !=22 and a.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time )
  1898. 2017-08-18 09:47:48.429 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1899. 2017-08-18 09:47:49.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectMList [159] -| <== Total: 1837
  1900. 2017-08-18 09:47:49.448 |-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
  1901. 2017-08-18 09:47:49.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters:
  1902. 2017-08-18 09:47:49.477 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <== Total: 21
  1903. 2017-08-18 09:47:49.481 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Preparing: SELECT IFNULL(sum(ct.check_item_score),0) AS score ,t.checked_dept AS dept_id ,t.checked_person AS user_id FROM check_task t LEFT JOIN check_score ct ON t.id = ct.task_id WHERE 1=1 and t.check_status!=22 and t.id not in ( select id from ( select check_task.*,deleted_user.starttime as u_delet_time from check_task 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 check_task.checked_person = deleted_user.id ) v_task where v_task.u_delet_time is not null and v_task.end_time > v_task.u_delet_time ) AND t.start_time >= ? AND t.end_time < ? GROUP BY t.checked_dept,t.checked_person
  1904. 2017-08-18 09:47:49.481 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| ==> Parameters: 2017-07-25 23:00:00.0(Timestamp), 2017-08-25 23:00:00.0(Timestamp)
  1905. 2017-08-18 09:47:49.852 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationCheckedScore [159] -| <== Total: 523