温红权 il y a 8 ans
Parent
commit
ac02770643

+ 67 - 65
VisualInspection/js/statistics/common_work.js

@@ -1,24 +1,23 @@
-
-$(function(){
+$(function() {
     setVisit();
     var road_manager;
-	if(roleContains("STATION")){
-        road_manager = getCurrentUser().road_manager_id;     
+    if (roleContains("STATION")) {
+        road_manager = getCurrentUser().road_manager_id;
     }
-    if(roleContains("ROAD_MANAGER")){
-        road_manager = getCurrentUser().organid;     
+    if (roleContains("ROAD_MANAGER")) {
+        road_manager = getCurrentUser().organid;
     }
-	setRoadManagerSelect("#center_manage",road_manager,true);
+    setRoadManagerSelect("#center_manage", road_manager, true);
     // 初始化部门下的收费站
-     getFsStationList(GV("#center_manage"),function(obj){
+    getFsStationList(GV("#center_manage"), function(obj) {
         $("#fs_station").html(obj);
         var dept;
-        if(roleContains("STATION")){
-            dept = getCurrentUser().organid;     
+        if (roleContains("STATION")) {
+            dept = getCurrentUser().organid;
         }
         $("#fs_station").val(dept);
         // 初始化收费站下的人数
-        getFsEmployee(GV("#fs_station"),function(obj){
+        getFsEmployee(GV("#fs_station"), function(obj) {
             $("#fs_employee").html(obj);
             // 检索
             getFsWorkInfo();
@@ -29,82 +28,84 @@ $(function(){
     // $("#sel_month").val(getM()-1);
 
     // $("#month_name").html( $("#sel_month").find("option:selected").text());
-     $("#start-time").val( new Date().getFullYear()+'-'+ (getM()-1) +"-25");
-     $("#end-time").val( new Date().getFullYear()+'-'+ (getM()) +"-25");
+    $("#start-time").val(new Date().getFullYear() + '-' + (getM() - 1) + "-26");
+    $("#end-time").val(new Date().getFullYear() + '-' + (getM()) + "-25");
+
+    $("#month_name").html(getM() + "月");
+
 
     // 收费站中心选择
-    $("#fs_station").change(function(){
+    $("#fs_station").change(function() {
         var fee_station_id = GV(this);
-        if(fee_station_id == ''){
+        if (fee_station_id == '') {
             $("#fs_employee").html('');
-        }else{
-            getFsEmployee(fee_station_id,function(obj){
+        } else {
+            getFsEmployee(fee_station_id, function(obj) {
                 $("#fs_employee").html(obj);
             });
         }
     })
 
     // 导管中心选择
-    $("#center_manage").change(function(){
+    $("#center_manage").change(function() {
         var center_manage_id = GV(this);
-        if(center_manage_id == ''){
+        if (center_manage_id == '') {
             $("#fs_station,#fs_employee").html('');
-        }else{
-            getFsStationList(center_manage_id,function(obj){
-                 $("#fs_station").html(obj);
-                 var dept;
-                 if(roleContains("STATION")){
-                    dept = getCurrentUser().organid;     
-                 }
-                 $("#fs_station").val(dept);
+        } else {
+            getFsStationList(center_manage_id, function(obj) {
+                $("#fs_station").html(obj);
+                var dept;
+                if (roleContains("STATION")) {
+                    dept = getCurrentUser().organid;
+                }
+                $("#fs_station").val(dept);
             });
         }
     })
 
     // 查询
-    $("#searchBtn").click(function(){        
-        // $("#month_name").html( $("#sel_month").find("option:selected").text()  )
-        getFsWorkInfo();
-    })
-    // end
+    $("#searchBtn").click(function() {
+            // $("#month_name").html( $("#sel_month").find("option:selected").text()  )
+            getFsWorkInfo();
+        })
+        // end
 })
 
 /**
  * 检索出勤明细数据
  * @param {*} param 
  */
-function getFsWorkInfo(){
+function getFsWorkInfo() {
 
     // var param = {
     //     "start_time": "2017-"+(GV("#sel_month")-1)+"-25 23:00:00" ,
     //     "end_time": "2017-"+GV("#sel_month")+"-25 23:00:00"
     // }
     var param = {
-        "start_time": GV("#start-time")+" 23:00:00" ,
-        "end_time": GV("#end-time")+" 23:00:00"
+        "start_time": GV("#start-time") + " 23:00:00",
+        "end_time": GV("#end-time") + " 23:00:00"
     }
-    
-    if(GV("#fs_employee")!=''){
-            param[ 'user_id'] = GV("#fs_employee");
-    }else if(GV("#fs_station")!=''){
-        param[ 'dept_id' ] = GV("#fs_station");
-    }else if(GV("#center_manage") != ''){
-            param[ 'parent_dept_id' ] = GV("#center_manage");
+
+    if (GV("#fs_employee") != '') {
+        param['user_id'] = GV("#fs_employee");
+    } else if (GV("#fs_station") != '') {
+        param['dept_id'] = GV("#fs_station");
+    } else if (GV("#center_manage") != '') {
+        param['parent_dept_id'] = GV("#center_manage");
     }
 
-    post_common_service("statistics/fs/work/person",param,function(data){
-   
+    post_common_service("statistics/fs/work/person", param, function(data) {
+
         $(".table-tbody").empty();
-        if(data.length >0){
+        if (data.length > 0) {
             var seq = 1;
-            for(var i=0;i< data.length;i++){
-                if(data[i].userName != undefined){
-                    $(".table-tbody").append( getTableContent(data[i],seq++));
+            for (var i = 0; i < data.length; i++) {
+                if (data[i].userName != undefined) {
+                    $(".table-tbody").append(getTableContent(data[i], seq++));
                 }
             }
         }
-    },function(error){
-    });
+    }, function(error) {});
 }
 
 /**
@@ -112,26 +113,27 @@ function getFsWorkInfo(){
  * @param {*} obj 
  * @param {*} seq 
  */
-function getTableContent(obj,seq){
-    
+function getTableContent(obj, seq) {
+
     var map_class = {};
     var workdays = 0;
-    for(var z=0; z < obj.subStatisticsFsWork.length ;z++){
-        map_class[obj.subStatisticsFsWork[z].class_type] = obj.subStatisticsFsWork[z].work_days ;
-        workdays += GDV(obj.subStatisticsFsWork[z].work_days,0);
+    for (var z = 0; z < obj.subStatisticsFsWork.length; z++) {
+        map_class[obj.subStatisticsFsWork[z].class_type] = obj.subStatisticsFsWork[z].work_days;
+        workdays += GDV(obj.subStatisticsFsWork[z].work_days, 0);
     }
 
-    var content = "<tr><td>"+seq+"</td> <td >"+obj.feeStationName+"</td> <td >"+obj.userName+
-            "</td> <td >"+obj.positionName+"</td><td>"+ GDV(map_class[3],0) +"</td><td>"+ GDV(map_class[1],0) +"</td><td>"+ GDV(map_class[2],0) +"</td><td>"+workdays+"</td><td>"+"</td> </tr>";
+    var content = "<tr><td>" + seq + "</td> <td >" + obj.feeStationName + "</td> <td >" + obj.userName +
+        "</td> <td >" + obj.positionName + "</td><td>" + GDV(map_class[3], 0) + "</td><td>" + GDV(map_class[1], 0) + "</td><td>" + GDV(map_class[2], 0) + "</td><td>" + workdays + "</td><td>" + "</td> </tr>";
 
     return content;
 }
-function setVisit(){
-	if(roleContains("STATION")){
-		$("#center_manage").attr("disabled","disabled");
-		$("#fs_station").attr("disabled","disabled");
-	}
-	if(roleContains("ROAD_MANAGER")){
-		$("#center_manage").attr("disabled","disabled");
-	}
+
+function setVisit() {
+    if (roleContains("STATION")) {
+        $("#center_manage").attr("disabled", "disabled");
+        $("#fs_station").attr("disabled", "disabled");
+    }
+    if (roleContains("ROAD_MANAGER")) {
+        $("#center_manage").attr("disabled", "disabled");
+    }
 }

+ 2925 - 0
VisualInspection_server/visual/visual.log

@@ -333,3 +333,2928 @@
 2017-07-24 10:13:09.703 |-INFO  [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
 2017-07-24 10:13:09.714 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
 2017-07-24 10:13:09.721 |-INFO  [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 7.537 seconds (JVM running for 8.197)
+2017-07-24 10:24:07.675 |-INFO  [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
+2017-07-24 10:24:07.675 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
+2017-07-24 10:24:07.690 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 15 ms
+2017-07-24 10:24:07.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:07.790 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:07.822 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:07.850 |-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 
+2017-07-24 10:24:07.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:07.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:07.889 |-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=?) 
+2017-07-24 10:24:07.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:07.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:07.927 |-ERROR [http-nio-8089-exec-2] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
+org.springframework.security.authentication.BadCredentialsException: 坏的凭证
+	at org.springframework.security.authentication.dao.DaoAuthenticationProvider.additionalAuthenticationChecks(DaoAuthenticationProvider.java:98)
+	at org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:166)
+	at org.springframework.security.authentication.ProviderManager.authenticate(ProviderManager.java:174)
+	at com.xintong.visualinspection.service.impl.AuthServiceImpl.login(AuthServiceImpl.java:55)
+	at com.xintong.visualinspection.controller.UserController.login(UserController.java:55)
+	at com.xintong.visualinspection.controller.UserController$$FastClassBySpringCGLIB$$2dbaeec9.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.UserController$$EnhancerBySpringCGLIB$$42c2cce8.login(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:07.938 |-WARN  [http-nio-8089-exec-2] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.security.authentication.BadCredentialsException: 坏的凭证
+2017-07-24 10:24:10.739 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:10.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:10.770 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:10.772 |-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 
+2017-07-24 10:24:10.772 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:10.804 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:10.805 |-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=?) 
+2017-07-24 10:24:10.806 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:10.833 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:10.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:10.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:10.866 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:10.867 |-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 
+2017-07-24 10:24:10.868 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:10.901 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:10.902 |-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=?) 
+2017-07-24 10:24:10.903 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:10.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.148 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.148 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:13.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:13.232 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:13.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:13.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.262 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:13.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:13.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:13.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.295 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:13.296 |-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 
+2017-07-24 10:24:13.297 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.329 |-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=?) 
+2017-07-24 10:24:13.330 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.340 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:13.343 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.403 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:13.406 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.452 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-07-24 10:24:13.453 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:24:13.487 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:24:13.488 |-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 
+2017-07-24 10:24:13.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.554 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.554 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.585 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:13.585 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:13.628 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:13.629 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:13.630 |-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 
+2017-07-24 10:24:13.630 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:13.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.661 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.662 |-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=?) 
+2017-07-24 10:24:13.663 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.666 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:13.690 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.691 |-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 
+2017-07-24 10:24:13.692 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.724 |-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=?) 
+2017-07-24 10:24:13.725 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.737 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:13.739 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.745 |-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 
+2017-07-24 10:24:13.746 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-07-24 10:24:13.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-07-24 10:24:13.793 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.797 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:13.799 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.801 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:24:13.801 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-07-24 10:24:13.836 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-07-24 10:24:13.838 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:13.838 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:13.868 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:13.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:13.869 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.902 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:13.903 |-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=?) 
+2017-07-24 10:24:13.903 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:13.932 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:13.978 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:13.981 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:13.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:13.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:24:14.117 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:24:14.155 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:14.186 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:14.187 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:14.217 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:14.218 |-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 
+2017-07-24 10:24:14.218 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:14.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:14.252 |-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=?) 
+2017-07-24 10:24:14.252 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:14.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:14.329 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:14.331 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:14.350 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-07-24 10:24:14.351 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-07-24 10:24:14.390 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-07-24 10:24:14.534 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:14.563 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:14.563 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:14.593 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:14.595 |-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 
+2017-07-24 10:24:14.596 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:14.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:14.630 |-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=?) 
+2017-07-24 10:24:14.630 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:14.661 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:14.709 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:14.711 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:14.788 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
+2017-07-24 10:24:14.788 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
+2017-07-24 10:24:14.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:14.835 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name FROM check_task t left join t_sys_users u on t.checked_person=u.id WHERE 1=1 AND t.check_status in ( ? , ? ) limit ?,? 
+2017-07-24 10:24:14.836 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
+2017-07-24 10:24:14.876 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 10
+2017-07-24 10:24:19.580 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:19.610 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:19.610 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:19.639 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:19.640 |-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 
+2017-07-24 10:24:19.641 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:19.674 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:19.675 |-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=?) 
+2017-07-24 10:24:19.675 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:19.704 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:19.748 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:19.751 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:19.791 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id WHERE 1 = 1 AND t.check_status = ?) table_count 
+2017-07-24 10:24:19.792 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 4(Integer)
+2017-07-24 10:24:19.888 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:19.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name FROM check_task t left join t_sys_users u on t.checked_person=u.id WHERE 1=1 AND t.check_status = ? limit ?,? 
+2017-07-24 10:24:19.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 4(Integer), 0(Integer), 10(Integer)
+2017-07-24 10:24:19.929 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-07-24 10:24:20.715 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:20.744 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:20.745 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:20.777 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:20.778 |-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 
+2017-07-24 10:24:20.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:20.811 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:20.812 |-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=?) 
+2017-07-24 10:24:20.813 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:20.842 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:20.887 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:20.889 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:20.928 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id WHERE 1 = 1 AND t.check_status = ?) table_count 
+2017-07-24 10:24:20.929 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer)
+2017-07-24 10:24:20.964 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:20.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name FROM check_task t left join t_sys_users u on t.checked_person=u.id WHERE 1=1 AND t.check_status = ? limit ?,? 
+2017-07-24 10:24:20.966 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 0(Integer), 10(Integer)
+2017-07-24 10:24:21.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-07-24 10:24:23.166 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:23.166 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:23.196 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:23.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:23.198 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:23.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:23.226 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:23.227 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:23.227 |-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 
+2017-07-24 10:24:23.228 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:23.228 |-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 
+2017-07-24 10:24:23.229 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:23.259 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:23.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:23.260 |-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=?) 
+2017-07-24 10:24:23.260 |-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=?) 
+2017-07-24 10:24:23.260 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:23.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:23.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:23.298 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:23.340 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:23.342 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:23.344 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:23.346 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:23.356 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2017-07-24 10:24:23.356 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 1(Long), 2(Long)
+2017-07-24 10:24:23.358 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-07-24 10:24:23.358 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 1(Long), 2017-07-01 00:00:00.0(Timestamp), 2017-07-31 00:00:00.0(Timestamp), 2(Integer)
+2017-07-24 10:24:23.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:23.383 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-07-24 10:24:23.384 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 1(Long), 2(Long), 0(Integer), 50(Integer)
+2017-07-24 10:24:23.387 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2017-07-24 10:24:23.411 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 1
+2017-07-24 10:24:25.082 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.094 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.098 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.099 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.115 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:25.116 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:25.122 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:25.123 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:25.143 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:25.145 |-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 
+2017-07-24 10:24:25.145 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.153 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:25.154 |-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 
+2017-07-24 10:24:25.155 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.174 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:25.176 |-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=?) 
+2017-07-24 10:24:25.176 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:25.188 |-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=?) 
+2017-07-24 10:24:25.189 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.203 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:25.205 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:25.206 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:25.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:25.209 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:25.220 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:25.237 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:25.237 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:25.238 |-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 
+2017-07-24 10:24:25.238 |-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 
+2017-07-24 10:24:25.238 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.239 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.250 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:25.252 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.264 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:25.266 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:25.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-07-24 10:24:25.271 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 1(Long), 2017-07-01 00:00:00.0(Timestamp), 2017-07-31 23:59:59.0(Timestamp), 1(Integer)
+2017-07-24 10:24:25.273 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:25.274 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2017-07-24 10:24:25.274 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 1(Long), 1(Long)
+2017-07-24 10:24:25.301 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 4
+2017-07-24 10:24:25.301 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:25.301 |-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=?) 
+2017-07-24 10:24:25.302 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.302 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-07-24 10:24:25.303 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 1(Long), 1(Long), 0(Integer), 50(Integer)
+2017-07-24 10:24:25.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:25.329 |-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=?) 
+2017-07-24 10:24:25.329 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:25.331 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 2
+2017-07-24 10:24:25.355 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:25.371 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:25.373 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.399 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:25.401 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:25.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-07-24 10:24:25.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-07-24 10:24:25.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-07-24 10:24:25.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:25.430 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-07-24 10:24:25.434 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2017-07-24 10:24:26.965 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:26.965 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:26.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:26.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:26.997 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:26.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:27.025 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:27.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:27.026 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:27.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.027 |-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 
+2017-07-24 10:24:27.028 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.059 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:27.060 |-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=?) 
+2017-07-24 10:24:27.060 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:27.061 |-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=?) 
+2017-07-24 10:24:27.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.091 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.131 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:27.134 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:27.134 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:27.135 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:27.139 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? order by workno 
+2017-07-24 10:24:27.140 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:27.141 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2017-07-24 10:24:27.141 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Parameters: 1(Long), 2(Long)
+2017-07-24 10:24:27.171 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:27.172 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 7
+2017-07-24 10:24:27.172 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-07-24 10:24:27.173 |-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 
+2017-07-24 10:24:27.174 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==> Parameters: 1(Long), 2(Long), 0(Integer), 10(Integer)
+2017-07-24 10:24:27.174 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
+2017-07-24 10:24:27.202 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| <==      Total: 1
+2017-07-24 10:24:27.206 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:27.207 |-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=?) 
+2017-07-24 10:24:27.210 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
+2017-07-24 10:24:27.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.237 |-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 
+2017-07-24 10:24:27.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2674(Integer)
+2017-07-24 10:24:27.267 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 75
+2017-07-24 10:24:27.268 |-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=?) 
+2017-07-24 10:24:27.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2674(Integer)
+2017-07-24 10:24:27.296 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 2
+2017-07-24 10:24:27.297 |-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 
+2017-07-24 10:24:27.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:27.326 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:27.327 |-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=?) 
+2017-07-24 10:24:27.327 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:27.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.354 |-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 
+2017-07-24 10:24:27.355 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.386 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:27.388 |-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=?) 
+2017-07-24 10:24:27.388 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:27.415 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.416 |-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 
+2017-07-24 10:24:27.417 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2704(Integer)
+2017-07-24 10:24:27.446 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:27.447 |-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=?) 
+2017-07-24 10:24:27.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2704(Integer)
+2017-07-24 10:24:27.475 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 2
+2017-07-24 10:24:27.476 |-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 
+2017-07-24 10:24:27.476 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2033(Integer)
+2017-07-24 10:24:27.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:27.506 |-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=?) 
+2017-07-24 10:24:27.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2033(Integer)
+2017-07-24 10:24:27.533 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:27.535 |-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 
+2017-07-24 10:24:27.536 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2712(Integer)
+2017-07-24 10:24:27.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:27.566 |-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=?) 
+2017-07-24 10:24:27.567 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2712(Integer)
+2017-07-24 10:24:27.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.093 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:28.093 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:28.124 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:28.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:28.125 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:28.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:28.154 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:28.155 |-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 
+2017-07-24 10:24:28.155 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:28.174 |-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 
+2017-07-24 10:24:28.175 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:28.188 |-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=?) 
+2017-07-24 10:24:28.188 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.208 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:28.209 |-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=?) 
+2017-07-24 10:24:28.209 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.215 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.239 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.259 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:28.260 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:28.263 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? order by workno 
+2017-07-24 10:24:28.264 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:28.289 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:28.290 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:28.295 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 7
+2017-07-24 10:24:28.296 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2017-07-24 10:24:28.296 |-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 
+2017-07-24 10:24:28.296 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Parameters: 1(Long), 1(Long)
+2017-07-24 10:24:28.296 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2034(Integer)
+2017-07-24 10:24:28.326 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:28.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:28.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-07-24 10:24:28.328 |-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=?) 
+2017-07-24 10:24:28.329 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==> Parameters: 1(Long), 1(Long), 0(Integer), 10(Integer)
+2017-07-24 10:24:28.329 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2034(Integer)
+2017-07-24 10:24:28.356 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.357 |-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 
+2017-07-24 10:24:28.358 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2674(Integer)
+2017-07-24 10:24:28.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| <==      Total: 2
+2017-07-24 10:24:28.388 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 75
+2017-07-24 10:24:28.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:28.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2674(Integer)
+2017-07-24 10:24:28.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 2
+2017-07-24 10:24:28.417 |-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 
+2017-07-24 10:24:28.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:28.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:28.447 |-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=?) 
+2017-07-24 10:24:28.448 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2017-07-24 10:24:28.474 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.475 |-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 
+2017-07-24 10:24:28.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.506 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:28.506 |-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=?) 
+2017-07-24 10:24:28.507 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:28.533 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.534 |-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 
+2017-07-24 10:24:28.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2704(Integer)
+2017-07-24 10:24:28.563 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:28.565 |-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=?) 
+2017-07-24 10:24:28.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2704(Integer)
+2017-07-24 10:24:28.592 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 2
+2017-07-24 10:24:28.593 |-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 
+2017-07-24 10:24:28.593 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2033(Integer)
+2017-07-24 10:24:28.623 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:28.624 |-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=?) 
+2017-07-24 10:24:28.624 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2033(Integer)
+2017-07-24 10:24:28.651 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:28.652 |-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 
+2017-07-24 10:24:28.652 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2712(Integer)
+2017-07-24 10:24:28.686 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 44
+2017-07-24 10:24:28.687 |-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=?) 
+2017-07-24 10:24:28.688 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2712(Integer)
+2017-07-24 10:24:28.714 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:29.920 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:29.920 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:29.920 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:29.949 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:29.950 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:29.952 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:29.952 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:29.980 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:29.981 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:29.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:29.981 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:29.981 |-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 
+2017-07-24 10:24:29.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:29.982 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:29.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:29.988 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:29.988 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:29.988 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.010 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:30.011 |-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 
+2017-07-24 10:24:30.012 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.012 |-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=?) 
+2017-07-24 10:24:30.013 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.015 |-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=?) 
+2017-07-24 10:24:30.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.016 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:30.016 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:30.018 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:30.018 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:30.041 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.043 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.044 |-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=?) 
+2017-07-24 10:24:30.044 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:30.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24: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 
+2017-07-24 10:24:30.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:30.046 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.046 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:30.049 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:30.049 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:30.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.076 |-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 
+2017-07-24 10:24:30.077 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.077 |-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=?) 
+2017-07-24 10:24:30.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:30.084 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.085 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.086 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:30.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:30.099 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.100 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.103 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.104 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept 
+2017-07-24 10:24:30.104 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
+2017-07-24 10:24:30.109 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:30.109 |-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=?) 
+2017-07-24 10:24:30.109 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:30.112 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.118 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.120 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:30.122 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:30.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:30.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.mth 
+2017-07-24 10:24:30.130 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp)
+2017-07-24 10:24:30.137 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:30.146 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.147 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept 
+2017-07-24 10:24:30.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
+2017-07-24 10:24:30.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:30.159 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.161 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.162 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:30.163 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:30.180 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:30.181 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:30.196 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:30.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <==      Total: 1
+2017-07-24 10:24:30.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 
+2017-07-24 10:24:30.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
+2017-07-24 10:24:30.266 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <==      Total: 21
+2017-07-24 10:24:30.267 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:30.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:30.267 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
+2017-07-24 10:24:30.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:30.298 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:30.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==>  Preparing: SELECT COUNT(1) AS people_num,s.ORGAN_ID AS dept_id, s.name from t_sys_users t LEFT JOIN t_br_layer_fee_station s ON t.ORGANID = s.ORGAN_ID WHERE 1=1 AND t.positionid in ( ? , ? , ? , ? ) AND s.ORGAN_ID IS NOT NULL GROUP BY s.ORGAN_ID 
+2017-07-24 10:24:30.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:24:30.312 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 8
+2017-07-24 10:24:30.312 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:30.313 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/07(String)
+2017-07-24 10:24:30.316 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <==      Total: 21
+2017-07-24 10:24:30.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:30.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:30.329 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.selectFeeStationGroup [159] -| <==      Total: 21
+2017-07-24 10:24:30.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:30.353 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 8
+2017-07-24 10:24:30.354 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:30.355 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 2017/06(String)
+2017-07-24 10:24:30.359 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 220
+2017-07-24 10:24:30.393 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 7
+2017-07-24 10:24:32.000 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.000 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.001 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.001 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.002 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.003 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.029 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.029 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.030 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.031 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.061 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.061 |-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 
+2017-07-24 10:24:32.061 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.062 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.064 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.065 |-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 
+2017-07-24 10:24:32.065 |-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 
+2017-07-24 10:24:32.065 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.066 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.088 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.093 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.094 |-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 
+2017-07-24 10:24:32.094 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.097 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.098 |-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=?) 
+2017-07-24 10:24:32.098 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.099 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.099 |-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=?) 
+2017-07-24 10:24:32.099 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.108 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.108 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.114 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.114 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.123 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.124 |-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=?) 
+2017-07-24 10:24:32.124 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.126 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:32.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.128 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.135 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:32.136 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.142 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.152 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.152 |-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 
+2017-07-24 10:24:32.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.154 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.168 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.169 |-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=?) 
+2017-07-24 10:24:32.169 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.173 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.174 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.174 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.175 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.178 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ? 
+2017-07-24 10:24:32.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ? 
+2017-07-24 10:24:32.179 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.179 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:32.184 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.196 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.196 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.198 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.198 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.200 |-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 = ? 
+2017-07-24 10:24:32.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.205 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.206 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ? 
+2017-07-24 10:24:32.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.218 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.219 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==>  Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? ) 
+2017-07-24 10:24:32.219 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
+2017-07-24 10:24:32.231 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.232 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==>  Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? ) 
+2017-07-24 10:24:32.232 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.232 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
+2017-07-24 10:24:32.232 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==>  Preparing: SELECT count(1) FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) AND t.organid in ( SELECT id FROM t_sys_organ where parentid=? ) 
+2017-07-24 10:24:32.233 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| ==> Parameters: 30(Long)
+2017-07-24 10:24:32.234 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:32.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
+2017-07-24 10:24:32.247 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.247 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <==      Total: 1
+2017-07-24 10:24:32.249 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.251 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) GROUP BY tab.mth 
+2017-07-24 10:24:32.252 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
+2017-07-24 10:24:32.252 |-ERROR [http-nio-8089-exec-4] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.getYearScoreChange(StatisticsServiceImpl.java:527)
+	at com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(StatisticsController.java:72)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.selectYearScoreChange(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.254 |-WARN  [http-nio-8089-exec-4] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.254 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.256 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.256 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.257 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.getCheckedScoreInfo(StatisticsServiceImpl.java:738)
+	at com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(StatisticsController.java:109)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.getCheckedInfoRate(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.258 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <==      Total: 1
+2017-07-24 10:24:32.259 |-WARN  [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.260 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:32.260 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.261 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/07(String)
+2017-07-24 10:24:32.265 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 7
+2017-07-24 10:24:32.267 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCenterManageCount [159] -| <==      Total: 1
+2017-07-24 10:24:32.269 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) 
+2017-07-24 10:24:32.270 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
+2017-07-24 10:24:32.284 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.285 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.293 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 7
+2017-07-24 10:24:32.295 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:32.295 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer), 2017/06(String)
+2017-07-24 10:24:32.300 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.301 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.315 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.316 |-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 
+2017-07-24 10:24:32.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.329 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.330 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 6
+2017-07-24 10:24:32.331 |-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 
+2017-07-24 10:24:32.331 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.334 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <==      Total: 1
+2017-07-24 10:24:32.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:32.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.341 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:24:32.349 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.365 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.366 |-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=?) 
+2017-07-24 10:24:32.366 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.366 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.371 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.372 |-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=?) 
+2017-07-24 10:24:32.372 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.375 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 54
+2017-07-24 10:24:32.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.395 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.395 |-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 
+2017-07-24 10:24:32.396 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.396 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.400 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.417 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.418 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.421 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.get2CheckedItemScoreInfo(StatisticsServiceImpl.java:806)
+	at com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(StatisticsController.java:127)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.getTwiceCheckedItemInfoRate(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.422 |-WARN  [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.425 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.426 |-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 
+2017-07-24 10:24:32.426 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.429 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.430 |-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=?) 
+2017-07-24 10:24:32.431 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.439 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.440 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.441 |-ERROR [http-nio-8089-exec-4] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.getCheckedItemScoreInfo(StatisticsServiceImpl.java:777)
+	at com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(StatisticsController.java:118)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.getCheckedItemInfoRate(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.442 |-WARN  [http-nio-8089-exec-4] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.447 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.448 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.452 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept 
+2017-07-24 10:24:32.452 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/07(String), 2017/07(String)
+2017-07-24 10:24:32.459 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.460 |-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=?) 
+2017-07-24 10:24:32.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.491 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.492 |-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 
+2017-07-24 10:24:32.492 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.499 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.501 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num ,tab.checked_dept AS dept_id FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 GROUP BY tab.checked_dept 
+2017-07-24 10:24:32.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| ==> Parameters: 2017/06(String), 2017/06(String)
+2017-07-24 10:24:32.525 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.525 |-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=?) 
+2017-07-24 10:24:32.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.535 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.536 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.540 |-ERROR [http-nio-8089-exec-2] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.getPersonalScoreInfo(StatisticsServiceImpl.java:854)
+	at com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(StatisticsController.java:136)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.getPersonalStuffItemInfo(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.541 |-WARN  [http-nio-8089-exec-2] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.555 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.558 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <==      Total: 21
+2017-07-24 10:24:32.559 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:32.559 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:32.603 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFeeStationScoreInfo [159] -| <==      Total: 21
+2017-07-24 10:24:32.603 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:32.604 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:32.605 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:32.606 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and parentid = ? 
+2017-07-24 10:24:32.607 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.608 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.609 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.610 |-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 = ? 
+2017-07-24 10:24:32.611 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:24:32.634 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:32.635 |-ERROR [http-nio-8089-exec-5] com.xintong.visualinspection.controller.BaseController [195] -| 空指针错误
+java.lang.NullPointerException: null
+	at com.xintong.visualinspection.service.impl.StatisticsServiceImpl.getSingleFeeStationScoreInfo(StatisticsServiceImpl.java:627)
+	at com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(StatisticsController.java:99)
+	at com.xintong.visualinspection.controller.StatisticsController$$FastClassBySpringCGLIB$$e0f09ca1.invoke(<generated>)
+	at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
+	at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:721)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173)
+	at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92)
+	at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
+	at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:656)
+	at com.xintong.visualinspection.controller.StatisticsController$$EnhancerBySpringCGLIB$$2c133d70.selectCentermanageTollgateScoreChange(<generated>)
+	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
+	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
+	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
+	at java.lang.reflect.Method.invoke(Method.java:497)
+	at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133)
+	at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738)
+	at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85)
+	at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963)
+	at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897)
+	at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970)
+	at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:872)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:648)
+	at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846)
+	at javax.servlet.http.HttpServlet.service(HttpServlet.java:729)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.web.filter.ApplicationContextHeaderFilter.doFilterInternal(ApplicationContextHeaderFilter.java:55)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:101)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:123)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.trace.WebRequestTraceFilter.doFilterInternal(WebRequestTraceFilter.java:108)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127)
+	at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:80)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:96)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331)
+	at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214)
+	at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177)
+	at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346)
+	at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:99)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HttpPutFormContentFilter.doFilterInternal(HttpPutFormContentFilter.java:105)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.HiddenHttpMethodFilter.doFilterInternal(HiddenHttpMethodFilter.java:81)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.springframework.boot.actuate.autoconfigure.MetricsFilter.doFilterInternal(MetricsFilter.java:106)
+	at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107)
+	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192)
+	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165)
+	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198)
+	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)
+	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474)
+	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140)
+	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
+	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87)
+	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349)
+	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783)
+	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)
+	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798)
+	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434)
+	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
+	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
+	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
+	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
+	at java.lang.Thread.run(Thread.java:745)
+2017-07-24 10:24:32.636 |-WARN  [http-nio-8089-exec-5] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: java.lang.NullPointerException
+2017-07-24 10:24:32.639 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:24:32.641 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept IN ( ? , ? , ? , ? , ? , ? , ? ) 
+2017-07-24 10:24:32.642 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 33(Integer), 34(Integer), 35(Integer), 36(Integer), 37(Integer), 38(Integer), 39(Integer)
+2017-07-24 10:24:32.729 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.732 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.732 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.733 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.733 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.742 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 54
+2017-07-24 10:24:32.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid in ( select id from t_sys_organ where parentid = ? ) AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:32.744 |-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)
+2017-07-24 10:24:32.765 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.765 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.766 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.766 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.767 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.796 |-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 
+2017-07-24 10:24:32.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.797 |-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 
+2017-07-24 10:24:32.796 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.797 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.797 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.797 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.799 |-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 
+2017-07-24 10:24:32.799 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.824 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.825 |-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 
+2017-07-24 10:24:32.825 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.828 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.828 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:32.829 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.829 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.829 |-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=?) 
+2017-07-24 10:24:32.830 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.832 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.832 |-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=?) 
+2017-07-24 10:24:32.832 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.855 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.855 |-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=?) 
+2017-07-24 10:24:32.856 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.858 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.858 |-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=?) 
+2017-07-24 10:24:32.859 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.859 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.859 |-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=?) 
+2017-07-24 10:24:32.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.860 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 190
+2017-07-24 10:24:32.876 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.882 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.885 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.888 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:32.903 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.904 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.905 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.905 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.906 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:32.906 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:32.907 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:32.907 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:32.908 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:24:32.908 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:24:32.924 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.925 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:32.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:32.929 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.929 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:32.930 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.930 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:32.931 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:24:32.932 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:24:32.933 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:32.933 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
+2017-07-24 10:24:32.938 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:32.938 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:32.938 |-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 
+2017-07-24 10:24:32.939 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth 
+2017-07-24 10:24:32.940 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-12-25 23:00:00.0(Timestamp), 2017-12-25 23:00:00.0(Timestamp), 2016-12-25 23:00:00.0(Timestamp), 2017-12-25 23:00:00.0(Timestamp), 39(Long)
+2017-07-24 10:24:32.956 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:32.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 4
+2017-07-24 10:24:32.962 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:24:32.963 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:24:32.969 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:32.969 |-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=?) 
+2017-07-24 10:24:32.970 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:32.996 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:33.040 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:33.041 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:33.044 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:24:33.044 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:24:33.069 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:24:33.071 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:33.071 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:24:33.103 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:24:33.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <==      Total: 2
+2017-07-24 10:24:33.144 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:24:33.172 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:24:33.173 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:33.174 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
+2017-07-24 10:24:33.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:24:33.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:33.186 |-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)
+2017-07-24 10:24:33.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 4
+2017-07-24 10:24:33.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:24:33.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
+2017-07-24 10:24:33.227 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:24:33.229 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:24:33.230 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
+2017-07-24 10:24:33.230 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 3
+2017-07-24 10:24:33.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 10
+2017-07-24 10:24:33.328 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:33.329 |-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)
+2017-07-24 10:24:33.359 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:24:45.019 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.058 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:45.059 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:45.089 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:45.090 |-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 
+2017-07-24 10:24:45.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:45.123 |-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=?) 
+2017-07-24 10:24:45.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.149 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:45.195 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:45.196 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.199 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:24:45.200 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:24:45.230 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:24:45.278 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.278 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.278 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.307 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:45.308 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:45.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:45.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:45.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:24:45.311 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:24:45.336 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:45.336 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:45.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:24:45.337 |-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 
+2017-07-24 10:24:45.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.341 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:24:45.341 |-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 
+2017-07-24 10:24:45.342 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.367 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:45.368 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:45.368 |-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=?) 
+2017-07-24 10:24:45.369 |-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=?) 
+2017-07-24 10:24:45.369 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.369 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.374 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:24:45.375 |-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=?) 
+2017-07-24 10:24:45.375 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:24:45.395 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:45.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:45.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:24:45.440 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:45.441 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.444 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:45.444 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id 
+2017-07-24 10:24:45.445 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.445 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp)
+2017-07-24 10:24:45.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==>  Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t 
+2017-07-24 10:24:45.447 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:24:45.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2162(Long)
+2017-07-24 10:24:45.448 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:24:45.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? 
+2017-07-24 10:24:45.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp)
+2017-07-24 10:24:45.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <==      Total: 0
+2017-07-24 10:24:45.476 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <==      Total: 0
+2017-07-24 10:24:45.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <==      Total: 1
+2017-07-24 10:24:45.495 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==>  Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? limit ?,? 
+2017-07-24 10:24:45.496 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
+2017-07-24 10:24:45.528 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <==      Total: 6
+2017-07-24 10:28:44.107 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:44.267 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:44.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:44.296 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:44.322 |-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 
+2017-07-24 10:28:44.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.353 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:44.354 |-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=?) 
+2017-07-24 10:28:44.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.380 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:44.424 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:44.426 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:44.427 |-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 
+2017-07-24 10:28:44.428 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:28:44.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:28:44.470 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:44.501 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:44.501 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:44.529 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:44.530 |-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 
+2017-07-24 10:28:44.531 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.561 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:44.561 |-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=?) 
+2017-07-24 10:28:44.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.587 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:44.632 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:44.633 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:44.635 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:28:44.636 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:28:44.792 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:28:44.817 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:44.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:44.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:44.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:44.884 |-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 
+2017-07-24 10:28:44.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:44.916 |-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=?) 
+2017-07-24 10:28:44.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:44.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:45.012 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:45.013 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:45.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:28:45.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:28:45.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:28:45.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==>  Preparing: SELECT t.* , ct.id AS check_id FROM sys_user_class t LEFT JOIN check_task ct ON t.id = ct.user_class_id AND ct.check_status != 22 AND t.class_type = ct.class_type AND t.user_id = ct.checked_person WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? ORDER BY t.work_date , t.user_id 
+2017-07-24 10:28:45.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| ==> Parameters: 2017-05-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp)
+2017-07-24 10:28:49.744 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:49.776 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:49.777 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:49.808 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:49.835 |-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 
+2017-07-24 10:28:49.836 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:49.866 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:49.867 |-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=?) 
+2017-07-24 10:28:49.867 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:49.893 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:49.938 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:49.939 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:49.941 |-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 
+2017-07-24 10:28:49.942 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:28:49.973 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:28:49.981 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:50.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:50.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:50.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:50.072 |-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 
+2017-07-24 10:28:50.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:50.120 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:50.121 |-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=?) 
+2017-07-24 10:28:50.122 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:50.161 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:50.198 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:50.200 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:50.203 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:28:50.204 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:28:50.308 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:28:50.334 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:50.364 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:28:50.364 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:28:50.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:28:50.396 |-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 
+2017-07-24 10:28:50.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:50.440 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:28:50.441 |-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=?) 
+2017-07-24 10:28:50.442 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:28:50.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:28:50.530 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:28:50.532 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:28:50.536 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:28:50.536 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:28:50.647 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:28:50.649 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:28:50.649 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:28:50.839 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1267
+2017-07-24 10:28:52.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWork [159] -| <==      Total: 5071
+2017-07-24 10:28:52.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , SUM( TIMESTAMPDIFF(MINUTE, t.start_time,t.end_time)) AS work_minutes , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id 
+2017-07-24 10:28:52.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| ==> Parameters: 2017-05-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp)
+2017-07-24 10:28:52.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGather [159] -| <==      Total: 483
+2017-07-24 10:29:02.053 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.053 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.115 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.117 |-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 
+2017-07-24 10:29:02.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.148 |-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=?) 
+2017-07-24 10:29:02.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.170 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.176 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:02.199 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.200 |-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 
+2017-07-24 10:29:02.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.222 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:02.224 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.230 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.230 |-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=?) 
+2017-07-24 10:29:02.231 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.257 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:02.257 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-07-24 10:29:02.258 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:29:02.287 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:29:02.288 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:29:02.289 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.302 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:02.303 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.319 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.349 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.349 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.380 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.407 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.409 |-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 
+2017-07-24 10:29:02.409 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.436 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.437 |-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 
+2017-07-24 10:29:02.438 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:29:02.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.468 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.468 |-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=?) 
+2017-07-24 10:29:02.469 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:02.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:02.513 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:02.514 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.515 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:29:02.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-07-24 10:29:02.540 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:02.541 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.542 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-07-24 10:29:02.542 |-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 
+2017-07-24 10:29:02.543 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-07-24 10:29:02.572 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-07-24 10:29:02.580 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.614 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.643 |-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 
+2017-07-24 10:29:02.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.675 |-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=?) 
+2017-07-24 10:29:02.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:02.745 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:02.747 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:02.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:02.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:02.878 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:02.907 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:02.908 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:02.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:02.937 |-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 
+2017-07-24 10:29:02.937 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.968 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:02.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:29:02.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:02.996 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:03.039 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:03.040 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.043 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-07-24 10:29:03.043 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-07-24 10:29:03.069 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-07-24 10:29:03.095 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.125 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:03.126 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:03.153 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:03.154 |-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 
+2017-07-24 10:29:03.154 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:03.185 |-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=?) 
+2017-07-24 10:29:03.185 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.211 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:03.255 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:03.257 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.259 |-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 
+2017-07-24 10:29:03.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:29:03.288 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:29:03.297 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.327 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:03.328 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:03.356 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:03.357 |-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 
+2017-07-24 10:29:03.357 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:03.400 |-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=?) 
+2017-07-24 10:29:03.401 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.440 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:03.484 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:03.485 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.488 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:03.489 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:03.573 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:03.599 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:03.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:03.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:03.657 |-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 
+2017-07-24 10:29:03.658 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.689 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:03.690 |-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=?) 
+2017-07-24 10:29:03.690 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:03.716 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:03.774 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:03.776 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:03.778 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:03.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:03.858 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:03.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:03.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:29:03.978 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1267
+2017-07-24 10:29:06.287 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:06.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:06.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:06.348 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:06.349 |-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 
+2017-07-24 10:29:06.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:06.379 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:06.380 |-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=?) 
+2017-07-24 10:29:06.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:06.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:06.450 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:06.452 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:06.455 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:06.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:06.552 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:06.553 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:06.554 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:29:06.665 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1267
+2017-07-24 10:29:07.580 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:07.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:07.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:07.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:07.642 |-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 
+2017-07-24 10:29:07.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:07.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:07.673 |-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=?) 
+2017-07-24 10:29:07.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:07.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:07.744 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:07.745 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:07.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:07.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:07.847 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:07.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:07.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:29:07.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1267
+2017-07-24 10:29:14.678 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:14.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:14.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:14.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:14.738 |-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 
+2017-07-24 10:29:14.739 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:14.768 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:14.769 |-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=?) 
+2017-07-24 10:29:14.769 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:14.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:14.839 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:14.840 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:14.843 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:14.844 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:14.939 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:14.940 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:14.940 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:29:15.052 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265
+2017-07-24 10:29:20.999 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:21.029 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:21.030 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:21.063 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:21.065 |-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 
+2017-07-24 10:29:21.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:21.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:21.097 |-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=?) 
+2017-07-24 10:29:21.097 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:21.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:21.167 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:21.169 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:21.171 |-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 = ? 
+2017-07-24 10:29:21.172 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 30(Integer)
+2017-07-24 10:29:21.199 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
+2017-07-24 10:29:22.353 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:22.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:22.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:22.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:22.415 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:29:22.416 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:22.446 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:22.447 |-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=?) 
+2017-07-24 10:29:22.447 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:22.473 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:22.517 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:22.519 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:22.522 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:22.522 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 33(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:22.553 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 23
+2017-07-24 10:29:23.928 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:23.960 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:23.961 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:23.990 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:23.991 |-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 
+2017-07-24 10:29:23.992 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:24.022 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:24.022 |-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=?) 
+2017-07-24 10:29:24.023 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:24.049 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:24.093 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:24.094 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:24.096 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOneDetail [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id WHERE t.id = ? 
+2017-07-24 10:29:24.097 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOneDetail [159] -| ==> Parameters: 2051(Integer)
+2017-07-24 10:29:24.125 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOneDetail [159] -| <==      Total: 1
+2017-07-24 10:29:24.126 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.user_id =? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:24.127 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp), 2051(Long)
+2017-07-24 10:29:24.160 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 3
+2017-07-24 10:29:28.717 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:28.748 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:29:28.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:29:28.778 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:29:28.780 |-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 
+2017-07-24 10:29:28.780 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:28.811 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:29:28.812 |-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=?) 
+2017-07-24 10:29:28.812 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:29:28.839 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:29:28.882 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:29:28.883 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:29:28.886 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:29:28.886 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:29:28.981 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:29:28.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:29:28.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:29:29.095 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265
+2017-07-24 10:30:11.234 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.234 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.234 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.234 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.235 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.236 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.265 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.266 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.293 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.294 |-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 
+2017-07-24 10:30:11.294 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.324 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.324 |-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=?) 
+2017-07-24 10:30:11.325 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.346 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.347 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.377 |-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 
+2017-07-24 10:30:11.377 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.378 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.380 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.380 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:11.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:11.394 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.395 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:30:11.398 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:30:11.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.407 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.408 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.408 |-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=?) 
+2017-07-24 10:30:11.409 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:11.427 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:30:11.431 |-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 
+2017-07-24 10:30:11.431 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.435 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.435 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==>  Preparing: SELECT sum(tab.checkd_all_score) AS all_check_score , sum(tab.checked_num) AS checked_num , tab.mth FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? GROUP BY tab.mth 
+2017-07-24 10:30:11.436 |-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 
+2017-07-24 10:30:11.436 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| ==> Parameters: 2016-12-25 23:00:00.0(Timestamp), 2017-12-25 23:00:00.0(Timestamp), 2016-12-25 23:00:00.0(Timestamp), 2017-12-25 23:00:00.0(Timestamp), 39(Long)
+2017-07-24 10:30:11.436 |-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 
+2017-07-24 10:30:11.436 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.437 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.439 |-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 
+2017-07-24 10:30:11.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.462 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.462 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:30:11.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.470 |-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=?) 
+2017-07-24 10:30:11.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.472 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.472 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:11.472 |-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=?) 
+2017-07-24 10:30:11.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=?) 
+2017-07-24 10:30:11.473 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:11.479 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.480 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:30:11.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:30:11.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:11.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:30:11.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:30:11.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:30:11.528 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.StatisticsDao.selectYearScoreInfo [159] -| <==      Total: 2
+2017-07-24 10:30:11.532 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.533 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.535 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:30:11.535 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:30:11.543 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.543 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.543 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.544 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:11.544 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.545 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:11.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==>  Preparing: SELECT t.organid AS dept_id , count(1) AS people_num,tf.name FROM t_sys_users t INNER JOIN t_br_layer_fee_station tf ON t.organid = tf.organ_id WHERE t.status >0 AND t.positionid in (1,4,5,6) GROUP BY t.organid ORDER BY t.organid 
+2017-07-24 10:30:11.545 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| ==> Parameters: 
+2017-07-24 10:30:11.546 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:30:11.546 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:30:11.547 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/07(String), 2017/07(String), 39(Long)
+2017-07-24 10:30:11.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
+2017-07-24 10:30:11.573 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsersCountList [159] -| <==      Total: 21
+2017-07-24 10:30:11.575 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:30:11.576 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/07(String)
+2017-07-24 10:30:11.576 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 4
+2017-07-24 10:30:11.605 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 4
+2017-07-24 10:30:11.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND t.checked_dept=? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND monthfunc( t.start_time ) = ? GROUP BY m.parent_id 
+2017-07-24 10:30:11.607 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| ==> Parameters: 39(Long), 2017/06(String)
+2017-07-24 10:30:11.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedItemScoreInfo [159] -| <==      Total: 3
+2017-07-24 10:30:11.678 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:30:11.717 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:30:11.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:11.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:30:11.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 7
+2017-07-24 10:30:11.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:11.745 |-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)
+2017-07-24 10:30:11.752 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:30:11.754 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==>  Preparing: SELECT tab.checkd_all_score AS all_check_score,tab.checked_person AS user_id , tab.checked_dept AS dept_id ,tab.checked_num FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND monthfunc (t.start_time) =? GROUP BY mth, t.checked_person ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND monthfunc (t.start_time) =? GROUP BY t.checked_person, mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) tab WHERE 1=1 AND tab.checked_dept=? 
+2017-07-24 10:30:11.754 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| ==> Parameters: 2017/06(String), 2017/06(String), 39(Long)
+2017-07-24 10:30:11.778 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:30:11.859 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.StatisticsDao.selectCheckedScoreList [159] -| <==      Total: 10
+2017-07-24 10:30:11.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:11.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 39(Integer), 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:30:11.895 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:30:15.496 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.527 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:15.528 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:15.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:15.558 |-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 
+2017-07-24 10:30:15.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.591 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:15.592 |-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=?) 
+2017-07-24 10:30:15.592 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.620 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:15.664 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:15.665 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 and t.organid = ? AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:15.669 |-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)
+2017-07-24 10:30:15.717 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 25
+2017-07-24 10:30:15.742 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.742 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.742 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.771 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:15.772 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:15.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:15.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:15.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:15.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:15.811 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:15.812 |-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 
+2017-07-24 10:30:15.812 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.815 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:15.815 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:15.816 |-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 
+2017-07-24 10:30:15.816 |-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 
+2017-07-24 10:30:15.816 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.844 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:15.845 |-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=?) 
+2017-07-24 10:30:15.845 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.846 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:15.847 |-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=?) 
+2017-07-24 10:30:15.847 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.849 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:15.850 |-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=?) 
+2017-07-24 10:30:15.850 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:15.874 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:15.874 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:15.878 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:15.918 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:15.919 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:15.920 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.920 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.921 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:15.922 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:15.923 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==>  Preparing: SELECT * FROM ( SELECT check_num_t.checked_num , checked_score_t.mth, checked_score_t.checkd_all_score AS all_check_score , checked_score_t.checked_person,checked_score_t.checked_dept FROM ( SELECT monthfunc (t.start_time) AS mth, sum(m.check_item_score) AS checkd_all_score, t.* FROM check_task t, check_score m WHERE t.id = m.task_id AND t.check_status != 22 AND t.checked_person IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) checked_score_t LEFT JOIN ( SELECT COUNT(t.checked_person) AS checked_num, t.checked_person, monthfunc (t.start_time) AS mth, t.id FROM check_task t WHERE t.checked_person IS NOT NULL AND t.check_status != 22 AND t.start_time >= ? AND t.end_time <= ? AND t.checked_person = ? GROUP BY mth ) check_num_t ON checked_score_t.checked_person = check_num_t.checked_person AND check_num_t.mth = checked_score_t.mth ) t 
+2017-07-24 10:30:15.923 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==>  Preparing: SELECT count(m.check_item_score) AS checked_num , sum(m.check_item_score) AS all_check_score , m.parent_id,m.check_item_name AS name FROM check_task t INNER JOIN ( select ci.name AS check_item_name , t.* FROM ( SELECT ci.parent_id, t.* from check_score t LEFT JOIN check_item ci ON t.check_item_id = ci.id WHERE 1=1 AND checked_person = ? ) t LEFT JOIN check_item ci ON t.parent_id = ci.id ) m ON t.id = m.task_id where t.check_status !=22 AND t.start_time >= ? AND t.end_time <= ? GROUP BY m.parent_id 
+2017-07-24 10:30:15.924 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| ==> Parameters: 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2162(Long), 2016-06-25 23:00:00.0(Timestamp), 2017-06-25 23:00:00.0(Timestamp), 2162(Long)
+2017-07-24 10:30:15.924 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp)
+2017-07-24 10:30:15.927 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.*, cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id WHERE t.check_status != 22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? 
+2017-07-24 10:30:15.927 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp)
+2017-07-24 10:30:15.953 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedItemInfo [159] -| <==      Total: 0
+2017-07-24 10:30:15.954 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedInfo [159] -| <==      Total: 0
+2017-07-24 10:30:15.957 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo_COUNT [159] -| <==      Total: 1
+2017-07-24 10:30:15.958 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==>  Preparing: SELECT t.name AS check_task_name , t.start_time AS start_date , t.end_time AS end_date,cs.check_item_score AS score , ci.name AS name,ci.parent_name, cs.pics ,t.checkman AS checkman_id, t.checked_person AS user_id ,t.checked_dept AS dept_id FROM check_task t LEFT JOIN check_score cs ON t.id = cs.task_id LEFT JOIN (SELECT ci.* ,cp.name AS parent_name FROM check_item ci LEFT JOIN check_item cp ON ci.parent_id = cp.id) ci ON ci.id = cs.check_item_id where t.check_status !=22 AND t.checked_person = ? AND t.start_time >= ? AND t.end_time <= ? limit ?,? 
+2017-07-24 10:30:15.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| ==> Parameters: 2162(Long), 2017-06-24 23:00:00.0(Timestamp), 2017-07-24 23:00:00.0(Timestamp), 0(Integer), 10(Integer)
+2017-07-24 10:30:15.991 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectOneCheckedDetailInfo [159] -| <==      Total: 6
+2017-07-24 10:30:20.928 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:20.963 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:20.963 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:20.992 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:20.993 |-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 
+2017-07-24 10:30:20.993 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:21.026 |-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=?) 
+2017-07-24 10:30:21.026 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:21.102 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:21.104 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:21.107 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 
+2017-07-24 10:30:21.107 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:30:21.147 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:30:21.159 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:21.190 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:21.191 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:21.219 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:21.220 |-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 
+2017-07-24 10:30:21.220 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.250 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:21.251 |-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=?) 
+2017-07-24 10:30:21.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.280 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:21.329 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:21.330 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:21.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:21.333 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:30:21.474 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:30:21.498 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:21.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:30:21.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:30:21.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:30:21.560 |-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 
+2017-07-24 10:30:21.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.590 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:30:21.591 |-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=?) 
+2017-07-24 10:30:21.591 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:30:21.617 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:30:21.664 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:30:21.666 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:30:21.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:30:21.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:30:21.785 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:30:21.786 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:30:21.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-25 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:30:21.913 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1267
+2017-07-24 10:31:13.477 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:13.477 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:13.511 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:31:13.512 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:31:13.519 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:31:13.519 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:31:13.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:31:13.542 |-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 
+2017-07-24 10:31:13.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:13.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:31:13.547 |-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 
+2017-07-24 10:31:13.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:13.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:31:13.573 |-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=?) 
+2017-07-24 10:31:13.573 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:13.579 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:31:13.580 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:31:13.581 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:13.599 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:31:13.608 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:31:13.640 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:31:13.642 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:13.655 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:31:13.656 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:13.682 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
+2017-07-24 10:31:13.683 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
+2017-07-24 10:31:13.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
+2017-07-24 10:31:13.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
+2017-07-24 10:31:13.714 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 9
+2017-07-24 10:31:13.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 30
+2017-07-24 10:31:17.051 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:17.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:31:17.087 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:31:17.116 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:31:17.117 |-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 
+2017-07-24 10:31:17.117 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:17.147 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:31:17.147 |-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=?) 
+2017-07-24 10:31:17.148 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:17.175 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:31:17.222 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:31:17.223 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:17.259 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-07-24 10:31:17.259 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:31:17.289 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:31:21.286 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:21.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:31:21.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:31:21.354 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:31:21.355 |-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 
+2017-07-24 10:31:21.356 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:21.400 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:31:21.401 |-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=?) 
+2017-07-24 10:31:21.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:31:21.447 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:31:21.495 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:31:21.496 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:31:21.502 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_menu WHERE status != -1 AND (parentId = ? OR id = ?) 
+2017-07-24 10:31:21.502 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| ==> Parameters: 60(Integer), 60(Integer)
+2017-07-24 10:31:21.555 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent_COUNT [159] -| <==      Total: 1
+2017-07-24 10:31:21.556 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 and (parentId = ? or id = ?) order by sortNo,id limit ?,? 
+2017-07-24 10:31:21.557 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| ==> Parameters: 60(Integer), 60(Integer), 0(Integer), 10(Integer)
+2017-07-24 10:31:21.636 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenuByParent [159] -| <==      Total: 1
+2017-07-24 10:33:20.330 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:20.487 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:20.487 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:20.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:20.576 |-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 
+2017-07-24 10:33:20.577 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:20.614 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:20.615 |-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=?) 
+2017-07-24 10:33:20.615 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:20.691 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:20.733 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:20.734 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:20.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 
+2017-07-24 10:33:20.737 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:33:20.766 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:33:20.773 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:20.802 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:20.802 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:20.830 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:20.831 |-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 
+2017-07-24 10:33:20.831 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:20.863 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:20.864 |-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=?) 
+2017-07-24 10:33:20.864 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:20.892 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:20.975 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:20.976 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:20.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:33:20.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:33:21.192 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:33:21.216 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:21.244 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:21.244 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:21.272 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:21.273 |-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 
+2017-07-24 10:33:21.274 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:21.307 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:21.308 |-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=?) 
+2017-07-24 10:33:21.308 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:21.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:21.376 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:21.378 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:21.381 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:33:21.381 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:33:21.561 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:33:21.562 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:33:21.562 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:33:21.764 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265
+2017-07-24 10:33:22.607 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:22.607 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:22.635 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:22.636 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:22.664 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:22.665 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:33:22.666 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:22.697 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:22.698 |-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=?) 
+2017-07-24 10:33:22.699 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:22.718 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:22.719 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:22.726 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:22.746 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:22.747 |-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 
+2017-07-24 10:33:22.747 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:22.770 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:22.772 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:22.777 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:22.778 |-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=?) 
+2017-07-24 10:33:22.778 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:22.805 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:22.849 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:22.851 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:22.881 |-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 
+2017-07-24 10:33:22.882 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:33:22.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:33:22.912 |-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 
+2017-07-24 10:33:22.913 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:22.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:22.979 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:22.979 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.008 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.037 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.037 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.037 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.038 |-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 
+2017-07-24 10:33:23.039 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.069 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:23.070 |-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=?) 
+2017-07-24 10:33:23.070 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.093 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:33:23.093 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.098 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:23.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:23.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:33:23.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.141 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:23.142 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.144 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:33:23.145 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-07-24 10:33:23.148 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:23.175 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-07-24 10:33:23.183 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.193 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:23.194 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.195 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:33:23.196 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-07-24 10:33:23.211 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.211 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-07-24 10:33:23.238 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.239 |-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 
+2017-07-24 10:33:23.240 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.270 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:23.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:33:23.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.298 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:23.339 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:23.341 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.345 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:33:23.346 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:33:23.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:33:23.520 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.548 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.548 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.577 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.578 |-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 
+2017-07-24 10:33:23.578 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.608 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:23.609 |-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=?) 
+2017-07-24 10:33:23.609 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.635 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:23.677 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:23.678 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.682 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-07-24 10:33:23.682 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-07-24 10:33:23.709 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-07-24 10:33:23.725 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.756 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.757 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.785 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.786 |-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 
+2017-07-24 10:33:23.786 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.816 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:23.817 |-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=?) 
+2017-07-24 10:33:23.817 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:23.843 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:23.884 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:23.886 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.888 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 
+2017-07-24 10:33:23.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:33:23.917 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:33:23.924 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:23.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:23.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:23.980 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:23.981 |-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 
+2017-07-24 10:33:23.981 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:24.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:24.011 |-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=?) 
+2017-07-24 10:33:24.012 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:24.038 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:24.079 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:24.080 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:24.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:33:24.083 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:33:24.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:33:24.226 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:24.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:33:24.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:33:24.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:33:24.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:33:24.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:33:24.314 |-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=?) 
+2017-07-24 10:33:24.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:33:24.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:33:24.381 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:33:24.382 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:33:24.385 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:33:24.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:33:24.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:33:24.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:33:24.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:33:24.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265
+2017-07-24 10:34:30.588 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.588 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:30.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:30.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:30.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:30.674 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:30.676 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:30.702 |-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 
+2017-07-24 10:34:30.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:34:30.703 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.734 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:30.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:30.735 |-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=?) 
+2017-07-24 10:34:30.736 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:34:30.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.762 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:30.762 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:30.805 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:30.806 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:30.806 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.807 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.838 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-07-24 10:34:30.839 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:34:30.868 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:34:30.868 |-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 
+2017-07-24 10:34:30.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.899 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:30.932 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.932 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:30.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:30.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:30.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:30.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:30.991 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:30.992 |-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 
+2017-07-24 10:34:30.992 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:30.993 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:30.994 |-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 
+2017-07-24 10:34:30.994 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.024 |-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=?) 
+2017-07-24 10:34:31.025 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.025 |-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=?) 
+2017-07-24 10:34:31.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:31.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:31.094 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:31.094 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:31.095 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.095 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:34:31.096 |-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 
+2017-07-24 10:34:31.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-07-24 10:34:31.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-07-24 10:34:31.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-07-24 10:34:31.126 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-07-24 10:34:31.133 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:31.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:31.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:31.193 |-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 
+2017-07-24 10:34:31.193 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.224 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:34:31.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.255 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:31.301 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:31.302 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.305 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:31.306 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:31.400 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:31.420 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.450 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:31.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:31.479 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:31.480 |-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 
+2017-07-24 10:34:31.480 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.511 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.512 |-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=?) 
+2017-07-24 10:34:31.513 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.545 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:31.589 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:31.591 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-07-24 10:34:31.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-07-24 10:34:31.622 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-07-24 10:34:31.655 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.686 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:31.686 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:31.714 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:31.715 |-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 
+2017-07-24 10:34:31.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.747 |-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=?) 
+2017-07-24 10:34:31.748 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.775 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:31.820 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:31.821 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.823 |-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 
+2017-07-24 10:34:31.823 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:34:31.852 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:34:31.861 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:31.891 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:31.891 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:31.918 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:31.919 |-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 
+2017-07-24 10:34:31.920 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:31.969 |-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=?) 
+2017-07-24 10:34:31.970 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:31.997 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:32.042 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:32.043 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:32.046 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:32.047 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:32.131 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:32.153 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:32.183 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:32.183 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:32.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:32.217 |-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 
+2017-07-24 10:34:32.218 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:32.254 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:32.255 |-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=?) 
+2017-07-24 10:34:32.256 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:32.287 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:32.342 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:32.343 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:32.346 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:32.346 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:32.442 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:32.443 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:34:32.444 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:34:32.680 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265
+2017-07-24 10:34:45.661 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.661 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:45.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:45.691 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:45.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:45.719 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:45.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:45.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:34:45.720 |-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 
+2017-07-24 10:34:45.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:45.721 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:45.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:45.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:45.752 |-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=?) 
+2017-07-24 10:34:45.753 |-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=?) 
+2017-07-24 10:34:45.753 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:45.753 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:45.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:45.780 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:45.828 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:45.828 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:45.829 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.829 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.859 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-07-24 10:34:45.860 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-07-24 10:34:45.890 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-07-24 10:34:45.891 |-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 
+2017-07-24 10:34:45.891 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:45.921 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:45.952 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.952 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:45.979 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:45.980 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:45.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:45.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:46.008 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.009 |-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 
+2017-07-24 10:34:46.009 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.010 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.010 |-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 
+2017-07-24 10:34:46.010 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.040 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.040 |-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=?) 
+2017-07-24 10:34:46.041 |-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=?) 
+2017-07-24 10:34:46.041 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.041 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.075 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:46.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:46.118 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:46.119 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:46.119 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.119 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.120 |-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 
+2017-07-24 10:34:46.120 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-07-24 10:34:46.120 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-07-24 10:34:46.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-07-24 10:34:46.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-07-24 10:34:46.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-07-24 10:34:46.159 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:46.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:46.220 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.221 |-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 
+2017-07-24 10:34:46.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.253 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.254 |-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=?) 
+2017-07-24 10:34:46.254 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.280 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:46.326 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:46.327 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.330 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:46.330 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:46.426 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:46.446 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.483 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:46.484 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:46.512 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.513 |-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 
+2017-07-24 10:34:46.513 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.547 |-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=?) 
+2017-07-24 10:34:46.547 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:46.619 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:46.620 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.622 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-07-24 10:34:46.623 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-07-24 10:34:46.652 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-07-24 10:34:46.677 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.707 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:46.707 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:46.736 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.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 
+2017-07-24 10:34:46.737 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.767 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.768 |-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=?) 
+2017-07-24 10:34:46.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.795 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:46.839 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:46.840 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.842 |-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 
+2017-07-24 10:34:46.843 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 
+2017-07-24 10:34:46.870 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2017-07-24 10:34:46.879 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:46.909 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:46.909 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:46.938 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:46.939 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-07-24 10:34:46.939 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:46.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:46.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-07-24 10:34:46.973 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:47.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:47.045 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:47.047 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:47.051 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:47.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:47.123 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:47.147 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:47.177 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-07-24 10:34:47.178 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: wenhongquan(String)
+2017-07-24 10:34:47.208 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-07-24 10:34:47.209 |-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 
+2017-07-24 10:34:47.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:47.241 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 88
+2017-07-24 10:34:47.242 |-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=?) 
+2017-07-24 10:34:47.242 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2040(Integer)
+2017-07-24 10:34:47.268 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-07-24 10:34:47.313 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user wenhongquan, setting security context
+2017-07-24 10:34:47.314 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication wenhongquan
+2017-07-24 10:34:47.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , fs.name AS fee_station_name,tso.parentid AS parent_organid FROM t_sys_users t LEFT JOIN t_br_layer_fee_station fs ON t.organid = fs.organ_id LEFT JOIN t_sys_organ tso ON t.organid = tso.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2017-07-24 10:34:47.317 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-07-24 10:34:47.379 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 582
+2017-07-24 10:34:47.380 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==>  Preparing: SELECT COUNT(DISTINCT(work_date)) AS work_days , t.* FROM sys_user_class t WHERE 1=1 AND t.user_id IS NOT NULL AND t.user_id IS NOT NULL AND t.start_time >= ? AND t.end_time <= ? GROUP BY t.user_id , t.class_type 
+2017-07-24 10:34:47.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| ==> Parameters: 2017-06-26 23:00:00.0(Timestamp), 2017-07-25 23:00:00.0(Timestamp)
+2017-07-24 10:34:47.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.StatisticsDao.selectFsWorkGatherGroupByWorkType [159] -| <==      Total: 1265