Explorar el Código

灌南东2个收费班长

温红权 hace 8 años
padre
commit
c78ef14665

+ 61 - 8
VisualInspection/js/teamClass/charge_team_schedule.js

@@ -4,13 +4,15 @@
 
   //    })
 
+  var user_dept_id = null;
+
   function initChargeTeamSchedule() {
       //  $("#main_content_title").html("收费人员排班")
 
       var user = $.zui.store.get("user"); // 缓存用户信息,取出dept_id
 
       // 用户的dept_id
-      var user_dept_id = user.organid;
+      user_dept_id = user.organid;
 
       // 收费小组type
       var team_type = 1;
@@ -91,9 +93,18 @@
               if (data != null) {
                   $(".thread_charge").append("<th>" + data.name + "</th>");
                   $(".thread_charge").append("<th>值机班长</th>");
-                  $(".thread_charge").append("<th>收费班长</th>");
+
+                  //灌南东
+                  if (user_dept_id == 35) {
+                      $(".thread_charge").append("<th>收费班长(西)</th>");
+                      $(".thread_charge").append("<th>收费班长(东)</th>");
+
+                  } else {
+                      $(".thread_charge").append("<th>收费班长</th>");
+                  }
+
                   $(".thread_charge").append("<th>值班室</th>");
-                  
+
 
                   // console.log(data);
                   lans = data.lanes_number;
@@ -247,6 +258,13 @@
 
               var zhiji_m_id = $(".c-" + j + "_0 select").val();
               var station_m_id = $(".c-" + j + "_1 select").val();
+              var station_m_id1 = null;
+              if (user_dept_id == 35) {
+                  station_m_id1 = $(".c-" + j + "_2 select").val();
+                  if (station_m_id1 == "" || station_m_id1 == null || typeof(station_m_id1) == "undefined") {
+                      station_m_id1 = 0;
+                  }
+              }
 
               if (zhiji_m_id == "" || zhiji_m_id == null || typeof(zhiji_m_id) == "undefined") {
                   zhiji_m_id = 0;
@@ -254,6 +272,11 @@
               if (station_m_id == "" || station_m_id == null || typeof(station_m_id) == "undefined") {
                   station_m_id = 0;
               }
+
+              if (user_dept_id == 35) {
+                  station_m_id1 = parseInt(station_m_id1)
+              }
+
               zhiji_m_id = parseInt(zhiji_m_id)
               station_m_id = parseInt(station_m_id)
 
@@ -275,9 +298,18 @@
                           var m_id = station_m_id
                           if (lane_id == 0) {
                               m_id = zhiji_m_id;
+                          } else {
+                              if (user_dept_id == 35) {
+                                  if (Math.abs(lane_id) <= 2) {
+                                      m_id = station_m_id;
+                                  } else {
+                                      m_id = station_m_id1;
+                                  }
+                              }
                           }
 
 
+
                           var list = $(".tr-" + j + " td select").eq(i).data("data");
                           var obj = { "list": list, "work_date": work_date, "dept_id": cache.dept_id, "user_id": $(".tr-" + j + " td select").eq(i).val(), "class_type": j, "team_id": cache.team_id, "start_time": start_time, "end_time": end_time, "lane": lane_id, "monitor_user_id": m_id };
                           console.log(obj)
@@ -402,7 +434,7 @@
           if (bind_data == null) {
               bind_data = [];
           }
-          // 判断时间区间 
+          // 判断时间区间
           // $(".modal-title span").html()
           var start_time_interval = $(".modal-title span").html() + ' ' + time_interval_obj.eq(1).html() + ":00";
           var end_time_interval = $(".modal-title span").html() + ' ' + time_interval_obj.eq(2).html() + ":00";
@@ -466,7 +498,7 @@
           // console.log(event。event.id);
           if (event.event.id == -1) {
 
-              // 这边负责添加整个页面的数据 按车道排班 
+              // 这边负责添加整个页面的数据 按车道排班
               $('#add_fee_station').modal({ 'backdrop': 'static' });
               $(".modal-title").html("收费站排班表-<span>" + event.event.start.Format("yyyy-MM-dd") + "</span>");
 
@@ -505,7 +537,15 @@
                       selectv1 = selectv1.replace("<option value=''>请选择</option>", "<option value='0'>请选择</option>");
 
                       $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "_0' >" + selectv1 + "</td>")
-                      $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "_1' >" + selectv1 + "</td>");
+
+                      if (user_dept_id == 35) {
+                          $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "_1' >" + selectv1 + "</td>");
+                          $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "_2' >" + selectv1 + "</td>");
+                      } else {
+                          $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "_1' >" + selectv1 + "</td>");
+                      }
+
+
 
                       selectv += "<i title='顶班详情' alt='顶班详情' class='icon icon-tags i-self' style='float:right;margin-top:7px;'></i>";
                       selectv += "<ul style='padding:0px;'></ul>"
@@ -514,7 +554,7 @@
                       selectv2 = selectv2.replace("<option value='0'>临时开道</option>", "");
 
                       $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "-0' tag='0'>" + selectv2 + "</td>")
-                      
+
                       for (var z = 0; z < entrance_number; z++) {
                           $(".tr-" + ct).append("<td style='vertical-align:top;width:137px;padding:2px;' class='c-" + ct + "-" + (z + 1) + "' tag='" + (z + 1) + "'>" + selectv + "</td>")
                       }
@@ -568,11 +608,24 @@
                               var aim_selector = $(".c-" + data[i].class_type + "-" + data[i].lane + " select");
                               var zhiji_m_id = $(".c-" + data[i].class_type + "_0 select");
                               var station_m_id = $(".c-" + data[i].class_type + "_1 select");
+                              var station_m_id1 = null;
+                              if (user_dept_id == 35) {
+                                  station_m_id1 = $(".c-" + data[i].class_type + "_2 select");
+                              }
 
                               if (data[i].lane == 0) {
                                   zhiji_m_id.val(m_id);
                               } else {
-                                  station_m_id.val(m_id);
+                                  if (user_dept_id == 35) {
+                                      if (Math.abs(data[i].lane) <= 2) {
+                                          station_m_id.val(m_id)
+                                      } else {
+                                          station_m_id1.val(m_id)
+                                      }
+
+                                  } else {
+                                      station_m_id.val(m_id);
+                                  }
                               }
 
                               aim_selector.val(data[i].user_id);

+ 94 - 92
VisualInspection/view/term_management/charge_stuff_schedule.html

@@ -1,4 +1,3 @@
-    
 <!--  start -->
 <div class="container-fluid ">
     <div class="row">
@@ -7,127 +6,126 @@
         </div>
     </div>
 </div>
-<!--   end -->         
+<!--   end -->
 <!--对话框 开始-->
 <div class="modal fade" id="myModal">
     <div class="modal-dialog">
         <div class="modal-content">
-    <div class="modal-header">
-        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span></button>
-        <h4 class="modal-title">添加排班</h4>
-    </div>
-    <div class="modal-body">
-            <!-- 添加对话框 -->
-            <div class="container-fluid ">
-                <div class="form-horizontal">
-                    <div class="form-group">
-                        <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_3"></label>
-                        <div class="col-md-6 col-sm-8">
-                            <select id="night_term" type="text" class="form-control class_team_3" >
+            <div class="modal-header">
+                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span></button>
+                <h4 class="modal-title">添加排班</h4>
+            </div>
+            <div class="modal-body">
+                <!-- 添加对话框 -->
+                <div class="container-fluid ">
+                    <div class="form-horizontal">
+                        <div class="form-group">
+                            <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_3"></label>
+                            <div class="col-md-6 col-sm-8">
+                                <select id="night_term" type="text" class="form-control class_team_3">
                                 <option value=''>请选择班组</option>
                             </select>
+                            </div>
                         </div>
-                    </div>
-                    <div class="form-group">
-                        <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_1"></label>
-                        <div class="col-md-6 col-sm-8">
-                            <select id="mooring_term" type="text" class="form-control class_team_1" >
+                        <div class="form-group">
+                            <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_1"></label>
+                            <div class="col-md-6 col-sm-8">
+                                <select id="mooring_term" type="text" class="form-control class_team_1">
                                 <option value=''>请选择班组</option>
                             </select>
+                            </div>
                         </div>
-                    </div>
-                    <div class="form-group">
-                        <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_2"></label>
-                        <div class="col-md-6 col-sm-8">
-                            <select id="middle_term" type="text" class="form-control class_team_2" >
+                        <div class="form-group">
+                            <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2 class_type_2"></label>
+                            <div class="col-md-6 col-sm-8">
+                                <select id="middle_term" type="text" class="form-control class_team_2">
                                 <option value=''>请选择班组</option>
                             </select>
+                            </div>
                         </div>
-                    </div>
-                    <hr>
-                    <div class="form-group">
-                        <div class="col-sm-12">
-                            <button  style="float:right;margin-right:10px;" class="btn btn close_btn">关闭</button>
-                            <button type="submit" style="float:right;margin-right:10px;" id="save_term_class" class="btn btn-info">生成今日排班</button>
+                        <hr>
+                        <div class="form-group">
+                            <div class="col-sm-12">
+                                <button style="float:right;margin-right:10px;" class="btn btn close_btn">关闭</button>
+                                <button type="submit" style="float:right;margin-right:10px;" id="save_term_class" class="btn btn-info">生成今日排班</button>
+                            </div>
                         </div>
                     </div>
                 </div>
+                <!--添加对话框结束-->
             </div>
-            <!--添加对话框结束-->
-    </div>
+        </div>
     </div>
 </div>
-</div>
 <!--对话框 结束-->
 
 
-<div class="modal fade" id="add_fee_station" >
-    <div class="modal-dialog modal-lg" style="width:1200px;" >
+<div class="modal fade" id="add_fee_station">
+    <div class="modal-dialog modal-lg" style="width:1200px;">
         <div class="modal-content">
-    <div class="modal-header">
-        <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span></button>
-        <h4 class="modal-title">收费站排班表</h4>
-    </div>
-    <div class="modal-body">
-            <!-- 添加对话框 -->
-            <div class="container-fluid" style="margin:0px;padding:0px;">
+            <div class="modal-header">
+                <button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">关闭</span></button>
+                <h4 class="modal-title">收费站排班表</h4>
+            </div>
+            <div class="modal-body">
+                <!-- 添加对话框 -->
+                <div class="container-fluid" style="margin:0px;padding:0px;">
                     <div class="row scrollbar" style="width:1150px;overflow:scroll;margin:0px;padding-bottom:10px;margin-bottom:10px;">
                         <style>
-                           th{
-                               text-align: center;
-                           }
-
+                            th {
+                                text-align: center;
+                            }
                         </style>
-                        <div style="margin:0px;text-align:center;width:1550px;">
-                        <table class="table" style="margin:0px;text-align:center;width:100%;">
-                            <thead class="thread_charge" style="padding:3px;font-size:14px;background:#F8F8F8;">
-                               
-                            </thead>
-                            <tbody class="tbody">
-                                <tr  class="tr-3">
-                                   
-                                </tr>
-                                <tr class="tr-1">
-                                 
-                                </tr>
-                                <tr  class="tr-2">
-                                  
-                                </tr>
-                            </tbody>
-                        </table>
+                        <div style="margin:0px;text-align:center;width:1660px;">
+                            <table class="table" style="margin:0px;text-align:center;width:100%;">
+                                <thead class="thread_charge" style="padding:3px;font-size:14px;background:#F8F8F8;">
+
+                                </thead>
+                                <tbody class="tbody">
+                                    <tr class="tr-3">
+
+                                    </tr>
+                                    <tr class="tr-1">
+
+                                    </tr>
+                                    <tr class="tr-2">
+
+                                    </tr>
+                                </tbody>
+                            </table>
                         </div>
                     </div>
-                  
+
                     <div class="form-group">
                         <div class="col-sm-12">
-                            <button  style="float:right;margin-right:10px;" class="btn btn close_btn">关闭</button>
+                            <button style="float:right;margin-right:10px;" class="btn btn close_btn">关闭</button>
                             <button type="submit" style="float:right;margin-right:10px;" id="save_user_class" class="btn btn-info">生成今日排班</button>
                         </div>
                     </div>
                 </div>
             </div>
             <!--添加对话框结束-->
-    </div>
+        </div>
     </div>
 </div>
 
 <div id="add_detail_info" style="width:700px;display:none;">
     <div id="lists">
-         <div class="datatable" style="padding-left:20px;padding-top:10px;"></div>
-         <div class="form-group">
+        <div class="datatable" style="padding-left:20px;padding-top:10px;"></div>
+        <div class="form-group">
             <div class="col-sm-12">
                 <button style="float:right;margin-right:10px;margin-bottom:30px; " class="btn btn-info add-btn">增加</button>
                 <button style="float:right;margin-right:10px;margin-bottom:30px; " class="btn btn-info save_class_info">确定</button>
             </div>
         </div>
     </div>
-    <div id="add_update" style="display:none;" >
+    <div id="add_update" style="display:none;">
         <div class="form-horizontal" style="margin-top:30px;">
             <div class="form-group">
                 <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2">班组人员</label>
                 <div class="col-md-6 col-sm-8">
-                    <select id="team_info_ti" type="text" class="form-control" >
-                        
+                    <select id="team_info_ti" type="text" class="form-control">
+
                     </select>
                 </div>
             </div>
@@ -141,13 +139,13 @@
                 <label for="exampleInputAccount4" class="col-sm-offset-1 col-sm-2">结束时间</label>
                 <div class="col-md-6 col-sm-8">
                     <input type="text" id="end_time" class="form-control form-date" placeholder="结束时间">
-                    
+
                 </div>
             </div>
-             <div class="form-group">
+            <div class="form-group">
                 <div class="col-sm-12">
-                    <button  style="float:right;margin-right:10px;" class="btn return-btn">返回</button>
-                    <button  style="float:right;margin-right:10px;" id="save_btn" class="btn btn-info">保存</button>
+                    <button style="float:right;margin-right:10px;" class="btn return-btn">返回</button>
+                    <button style="float:right;margin-right:10px;" id="save_btn" class="btn btn-info">保存</button>
                 </div>
             </div>
         </div>
@@ -156,26 +154,30 @@
 
 </div>
 
-<!--<link rel="stylesheet" type="text/css" href="/node_modules/zui/dist/lib/calendar/zui.calendar.css">   
+<!--<link rel="stylesheet" type="text/css" href="/node_modules/zui/dist/lib/calendar/zui.calendar.css">
 <script src="/node_modules/zui/dist/lib/calendar/zui.calendar.js"></script>
 <script src="/js/teamClass/charge_team_schedule.js"></script>-->
 
-<style type="text/css" >
-    span.time{
-        display: none !important ;
+<style type="text/css">
+    span.time {
+        display: none !important;
     }
-    div.day{
-        text-align: center ;
+    
+    div.day {
+        text-align: center;
     }
-    .content .events div:first-child{
-        background-color:chocolate !important ;
+    
+    .content .events div:first-child {
+        background-color: chocolate !important;
     }
-    .select-self{
-        display: inline !important ;
-        width: 80% ;
+    
+    .select-self {
+        display: inline !important;
+        width: 80%;
     }
-    .icon.icon-tags.i-self{
-        width: 20% ;
+    
+    .icon.icon-tags.i-self {
+        width: 20%;
         cursor: pointer;
     }
     /*.jedatebox{
@@ -189,10 +191,10 @@
         /**
          * 变手 和添加排班
          */
-        $(document).delegate(".cell-day.current-month","mouseenter",function(){
-            $(this).css("cursor","pointer");
-            $(this).attr("title","添加排班");
+        $(document).delegate(".cell-day.current-month", "mouseenter", function() {
+            $(this).css("cursor", "pointer");
+            $(this).attr("title", "添加排班");
         })
 
     })
-</script>
+</script>

+ 3322 - 0
VisualInspection_server/visual/visual.log

@@ -31854,3 +31854,3325 @@ Caused by: java.net.SocketTimeoutException: Read timed out
 2017-08-02 15:59:59.518 |-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-08-02 15:59:59.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
 2017-08-02 15:59:59.592 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:07:38.437 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
+2017-08-02 16:07:38.643 |-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-08-02 16:07:38.644 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100101001(String)
+2017-08-02 16:07:38.717 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:07:38.744 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:07:38.745 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2041(Integer)
+2017-08-02 16:07:38.773 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:07:38.774 |-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-08-02 16:07:38.774 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2041(Integer)
+2017-08-02 16:07:38.800 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:07:38.829 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100101001, setting security context
+2017-08-02 16:07:38.831 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100101001
+2017-08-02 16:08:05.329 |-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-08-02 16:08:05.329 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:05.403 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:05.404 |-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-08-02 16:08:05.405 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:05.438 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:05.439 |-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-08-02 16:08:05.440 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:05.472 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:05.473 |-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-08-02 16:08:05.473 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:05.546 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:05.547 |-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-08-02 16:08:05.547 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:05.581 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:05.582 |-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-08-02 16:08:05.582 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:05.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:05.932 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:05.932 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:05.968 |-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-08-02 16:08:05.968 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.041 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.041 |-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-08-02 16:08:06.042 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.053 |-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-08-02 16:08:06.054 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.069 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.070 |-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-08-02 16:08:06.071 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.083 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.095 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:06.111 |-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-08-02 16:08:06.112 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.124 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:06.126 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.140 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.141 |-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-08-02 16:08:06.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.168 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:06.199 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:06.201 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:08:06.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:08:06.270 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:08:06.271 |-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-08-02 16:08:06.272 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.327 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.327 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.355 |-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-08-02 16:08:06.355 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.370 |-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-08-02 16:08:06.371 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.384 |-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-08-02 16:08:06.385 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.415 |-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-08-02 16:08:06.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:06.443 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.444 |-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-08-02 16:08:06.444 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.473 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.474 |-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-08-02 16:08:06.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.476 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:06.477 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:08:06.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:08:06.501 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:06.534 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:06.535 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.537 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:08:06.537 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:08:06.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:08:06.562 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.565 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:08:06.592 |-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-08-02 16:08:06.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.621 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.622 |-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-08-02 16:08:06.622 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.651 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.652 |-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-08-02 16:08:06.652 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.679 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:06.716 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:06.717 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.720 |-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-08-02 16:08:06.721 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:08:06.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:08:06.847 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:06.878 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:08:06.878 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:06.906 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:06.907 |-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-08-02 16:08:06.908 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.936 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:06.937 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:08:06.938 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:06.965 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:07.026 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:07.026 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:07.029 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:08:07.029 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:08:07.056 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:08:07.161 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:07.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:08:07.240 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:07.278 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:07.279 |-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-08-02 16:08:07.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:07.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:07.309 |-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-08-02 16:08:07.310 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:07.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:07.389 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:07.390 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:07.460 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:08:07.460 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 35(Long)
+2017-08-02 16:08:07.513 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:08:07.515 |-DEBUG [http-nio-8089-exec-3] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:08:07.515 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 35(Long), 0(Integer), 10(Integer)
+2017-08-02 16:08:07.569 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-08-02 16:08:09.917 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:09.917 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:09.917 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:09.917 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:09.946 |-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-08-02 16:08:09.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:09.958 |-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-08-02 16:08:09.959 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:09.974 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:09.975 |-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-08-02 16:08:09.976 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:10.005 |-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-08-02 16:08:10.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.014 |-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-08-02 16:08:10.014 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:10.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:10.031 |-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-08-02 16:08:10.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:10.031 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.043 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:10.044 |-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-08-02 16:08:10.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:10.044 |-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-08-02 16:08:10.045 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.060 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:10.061 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:10.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:10.068 |-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-08-02 16:08:10.068 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.074 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:10.074 |-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-08-02 16:08:10.075 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:08:10.095 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:08:10.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:10.101 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:10.117 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:10.118 |-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-08-02 16:08:10.118 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.121 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:08:10.133 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:10.134 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:10.138 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-08-02 16:08:10.139 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:08:10.141 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:10.142 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:10.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:10.149 |-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-08-02 16:08:10.149 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:10.168 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2017-08-02 16:08:10.176 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:10.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:08:10.177 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:08:10.219 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:10.221 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:10.232 |-DEBUG [http-nio-8089-exec-10] 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-08-02 16:08:10.232 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:08:10.251 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:08:10.264 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:08:10.265 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:08:10.265 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:08:10.293 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:08:12.662 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:12.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-08-02 16:08:12.692 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:12.764 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:12.765 |-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-08-02 16:08:12.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:12.796 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:12.797 |-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-08-02 16:08:12.797 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:12.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:12.862 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:12.863 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:12.866 |-DEBUG [http-nio-8089-exec-6] 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-08-02 16:08:12.866 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:08:12.895 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2017-08-02 16:08:18.472 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:18.500 |-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-08-02 16:08:18.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:18.573 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:18.574 |-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-08-02 16:08:18.575 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:18.604 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:18.605 |-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-08-02 16:08:18.605 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:18.632 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:18.663 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:18.664 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:18.724 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:08:18.725 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 113(Long)
+2017-08-02 16:08:18.759 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:08:18.760 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:08:18.761 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2249,2250,2267,2253,2259,2269,2255,2257,2264,2261,2699,2266,2275,2278,2268,2700,2270,2273,2283(String), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp)
+2017-08-02 16:08:18.815 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:08:18.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:08:18.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 50(Long)
+2017-08-02 16:08:18.845 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:08:18.846 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:08:18.847 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2249,2250,2267,2256,2262,2253,2258,2259,2269,2698,2251,2252,2272,2255,2257,2264,2271,2265,2260,2261,2263,2699,2282,2276,2266,2275,2278,2279,2268,2700,2270,2277,2274,2273,2283,2280(String), 1(Integer), 50(Long), 2017-08-02 08:00:00.0(Timestamp), 2017-08-02 15:00:00.0(Timestamp)
+2017-08-02 16:08:18.899 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:08:18.901 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:08:18.901 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 50(Long)
+2017-08-02 16:08:18.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:08:18.932 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:08:18.932 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2249,2250,2267,2256,2262,2253,2258,2259,2269,2698,2251,2252,2272,2255,2257,2264,2271,2265,2260,2261,2263,2699,2282,2276,2266,2275,2278,2279,2268,2700,2270,2277,2274,2273,2283,2280(String), 2(Integer), 50(Long), 2017-08-02 15:00:00.0(Timestamp), 2017-08-02 23:00:00.0(Timestamp)
+2017-08-02 16:08:18.988 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:08:19.012 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:19.043 |-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-08-02 16:08:19.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:19.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:19.118 |-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-08-02 16:08:19.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:19.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:19.149 |-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-08-02 16:08:19.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:19.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:19.214 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:19.215 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:19.217 |-DEBUG [http-nio-8089-exec-2] 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-08-02 16:08:19.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:08:19.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:08:20.959 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:20.988 |-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-08-02 16:08:20.988 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:21.061 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:21.062 |-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-08-02 16:08:21.062 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:21.092 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:21.093 |-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-08-02 16:08:21.094 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:21.120 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:21.184 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:21.185 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:21.188 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:08:21.189 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:08:21.218 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:08:21.247 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:21.290 |-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-08-02 16:08:21.290 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:21.362 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:21.363 |-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-08-02 16:08:21.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:21.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:21.393 |-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-08-02 16:08:21.393 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:21.419 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:21.448 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:21.449 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:21.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:08:21.457 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:08:21.491 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:08:48.585 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:48.646 |-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-08-02 16:08:48.646 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:08:48.719 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:48.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-08-02 16:08:48.720 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:48.750 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:48.751 |-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-08-02 16:08:48.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:08:48.778 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:48.815 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:08:48.816 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:08:52.202 |-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-08-02 16:08:52.203 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001	(String)
+2017-08-02 16:08:52.277 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 0
+2017-08-02 16:08:52.281 |-ERROR [http-nio-8089-exec-9] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
+org.springframework.security.authentication.BadCredentialsException: 坏的凭证
+	at org.springframework.security.authentication.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:151)
+	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$$5637e741.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-08-02 16:08:52.282 |-WARN  [http-nio-8089-exec-9] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.security.authentication.BadCredentialsException: 坏的凭证
+2017-08-02 16:08:56.816 |-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-08-02 16:08:56.817 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:56.894 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:56.895 |-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-08-02 16:08:56.895 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:56.926 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:56.928 |-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-08-02 16:08:56.928 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:56.954 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:56.956 |-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-08-02 16:08:56.956 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.029 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.031 |-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-08-02 16:08:57.032 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.061 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.063 |-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-08-02 16:08:57.063 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.264 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.264 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.291 |-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-08-02 16:08:57.292 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.292 |-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-08-02 16:08:57.292 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.323 |-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-08-02 16:08:57.324 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.354 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.356 |-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-08-02 16:08:57.356 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:08:57.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.397 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.398 |-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-08-02 16:08:57.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.416 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:57.417 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.451 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:08:57.451 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:08:57.452 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:57.453 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:08:57.482 |-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-08-02 16:08:57.482 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.511 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.535 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.535 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.564 |-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-08-02 16:08:57.564 |-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-08-02 16:08:57.565 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.595 |-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-08-02 16:08:57.596 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.624 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.625 |-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-08-02 16:08:57.625 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.639 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.640 |-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-08-02 16:08:57.640 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.652 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.668 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:08:57.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.693 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:57.694 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.695 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:08:57.695 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:08:57.696 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.735 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:57.736 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.738 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:08:57.738 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:08:57.768 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:08:57.780 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:08:57.788 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.842 |-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-08-02 16:08:57.842 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:57.871 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:57.872 |-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-08-02 16:08:57.872 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.900 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:57.901 |-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-08-02 16:08:57.901 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:57.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:57.991 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:57.992 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:57.996 |-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-08-02 16:08:57.997 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:08:58.093 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:08:58.119 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:58.164 |-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-08-02 16:08:58.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:58.194 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:58.195 |-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-08-02 16:08:58.195 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:58.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:58.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:08:58.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:58.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:58.284 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:58.285 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:58.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:08:58.288 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:08:58.314 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:08:58.416 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:58.459 |-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-08-02 16:08:58.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:08:58.488 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:08:58.489 |-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-08-02 16:08:58.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:58.519 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:08:58.520 |-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-08-02 16:08:58.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:08:58.546 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:08:58.589 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:08:58.590 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:08:58.627 |-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, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:08:58.627 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 34(Long)
+2017-08-02 16:08:58.664 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:08:58.666 |-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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:08:58.667 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 34(Long), 0(Integer), 10(Integer)
+2017-08-02 16:08:58.704 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 1
+2017-08-02 16:09:01.433 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.433 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.434 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.434 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.461 |-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-08-02 16:09:01.462 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:01.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:09:01.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:01.489 |-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-08-02 16:09:01.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:01.490 |-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-08-02 16:09:01.490 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:01.490 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:01.491 |-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-08-02 16:09:01.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:01.517 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:01.518 |-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-08-02 16:09:01.518 |-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-08-02 16:09:01.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.518 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:01.520 |-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-08-02 16:09:01.520 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.535 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:01.547 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:01.547 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:01.548 |-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-08-02 16:09:01.548 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.553 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:01.554 |-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-08-02 16:09:01.554 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.560 |-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-08-02 16:09:01.561 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.575 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:01.576 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:01.578 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:09:01.578 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:09:01.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:01.588 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:01.589 |-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-08-02 16:09:01.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:01.605 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:01.606 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:09:01.606 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.610 |-DEBUG [http-nio-8089-exec-2] 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-08-02 16:09:01.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
+2017-08-02 16:09:01.612 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:01.613 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.614 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:01.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:09:01.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:09:01.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:09:01.643 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:09:01.644 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
+2017-08-02 16:09:01.648 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:01.649 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:01.652 |-DEBUG [http-nio-8089-exec-9] 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-08-02 16:09:01.652 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:09:01.665 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:09:01.679 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2017-08-02 16:09:01.719 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:09:02.980 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:03.010 |-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-08-02 16:09:03.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:03.084 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:03.085 |-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-08-02 16:09:03.086 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:03.114 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:03.115 |-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-08-02 16:09:03.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:03.140 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:03.170 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:03.171 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:03.173 |-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-08-02 16:09:03.174 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:09:03.203 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2017-08-02 16:09:08.412 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:08.443 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:09:08.443 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:08.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:08.517 |-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-08-02 16:09:08.518 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:08.549 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:08.550 |-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-08-02 16:09:08.551 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:08.577 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:08.605 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:08.606 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:08.637 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:08.638 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 54(Long)
+2017-08-02 16:09:08.664 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:08.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:08.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2284,2285,2286,2288,2289,2290,2292,2295,2296,2298,2299,2300,2302,2303,2305,2306,2307,2308,2310(String), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp)
+2017-08-02 16:09:08.717 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:08.719 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:08.719 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 52(Long)
+2017-08-02 16:09:08.748 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:08.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:08.750 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2285,2286,2288,2291,2295,2297,2299,2303,2304,2305,2309(String), 1(Integer), 52(Long), 2017-08-02 08:00:00.0(Timestamp), 2017-08-02 15:00:00.0(Timestamp)
+2017-08-02 16:09:08.801 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:08.802 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:08.803 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 105(Long)
+2017-08-02 16:09:08.829 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:08.830 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:08.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2287,2291,2293,2296,2297,2299,2300,2301,2302,2305,2307,2308(String), 2(Integer), 105(Long), 2017-08-02 15:00:00.0(Timestamp), 2017-08-02 23:00:00.0(Timestamp)
+2017-08-02 16:09:08.888 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:08.909 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:08.936 |-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-08-02 16:09:08.937 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:09.050 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:09.050 |-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-08-02 16:09:09.051 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:09.079 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:09.081 |-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-08-02 16:09:09.081 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:09.107 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:09.137 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:09.138 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:09.140 |-DEBUG [http-nio-8089-exec-3] 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-08-02 16:09:09.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:09:09.169 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:09:10.109 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:10.137 |-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-08-02 16:09:10.138 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:10.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:10.212 |-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-08-02 16:09:10.212 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:10.239 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:10.240 |-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-08-02 16:09:10.241 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:10.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:10.296 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:10.297 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:10.299 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:09:10.300 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:09:10.329 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:09:10.347 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:10.375 |-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-08-02 16:09:10.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:10.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:10.449 |-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-08-02 16:09:10.450 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:10.484 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:10.485 |-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-08-02 16:09:10.485 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:10.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:10.539 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:10.541 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:10.543 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:09:10.544 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:09:10.577 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:09:22.137 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:22.167 |-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-08-02 16:09:22.167 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:09:22.241 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:22.242 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:09:22.242 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:22.270 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:22.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-08-02 16:09:22.271 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:09:22.300 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:22.331 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:09:22.332 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:09:35.366 |-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-08-02 16:09:35.367 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:35.446 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:35.447 |-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-08-02 16:09:35.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:35.477 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:35.479 |-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-08-02 16:09:35.479 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:35.504 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:35.505 |-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-08-02 16:09:35.506 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:35.580 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:35.581 |-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-08-02 16:09:35.582 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:35.609 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:35.611 |-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-08-02 16:09:35.611 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:35.637 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:35.927 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:35.927 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:35.956 |-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-08-02 16:09:35.957 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:35.957 |-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-08-02 16:09:35.957 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:35.985 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:35.986 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:09:35.986 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.015 |-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-08-02 16:09:36.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.030 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:36.031 |-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-08-02 16:09:36.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.040 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:36.062 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.063 |-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-08-02 16:09:36.063 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.074 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:36.075 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.090 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:36.130 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:36.131 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.172 |-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-08-02 16:09:36.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:09:36.202 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:09:36.204 |-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-08-02 16:09:36.204 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.234 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.257 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.257 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.286 |-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-08-02 16:09:36.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:36.305 |-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-08-02 16:09:36.306 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:36.333 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:36.334 |-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-08-02 16:09:36.335 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.360 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:36.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:09:36.361 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.366 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.367 |-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-08-02 16:09:36.367 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.390 |-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-08-02 16:09:36.391 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.393 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:36.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:36.455 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:36.457 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.458 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:09:36.459 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:09:36.484 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:36.486 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.487 |-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-08-02 16:09:36.488 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:09:36.518 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:09:36.525 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.531 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:09:36.553 |-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-08-02 16:09:36.554 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:36.626 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:36.627 |-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-08-02 16:09:36.627 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.656 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:36.657 |-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-08-02 16:09:36.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:36.684 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:36.720 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:36.721 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:36.724 |-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-08-02 16:09:36.724 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:09:36.995 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:09:37.029 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:37.058 |-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-08-02 16:09:37.058 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:37.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:37.135 |-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-08-02 16:09:37.135 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.170 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:37.170 |-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-08-02 16:09:37.171 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:37.229 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:37.231 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:37.234 |-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-08-02 16:09:37.235 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:09:37.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:09:37.362 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:37.390 |-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-08-02 16:09:37.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:37.463 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:37.464 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:09:37.464 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.493 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:37.495 |-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-08-02 16:09:37.495 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.521 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:37.550 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:37.551 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:37.578 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:37.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:09:37.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 35(Long)
+2017-08-02 16:09:37.627 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:09:37.628 |-DEBUG [http-nio-8089-exec-5] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:09:37.629 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 35(Long), 0(Integer), 10(Integer)
+2017-08-02 16:09:37.652 |-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-08-02 16:09:37.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:37.672 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-08-02 16:09:37.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:37.726 |-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-08-02 16:09:37.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:37.756 |-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-08-02 16:09:37.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:37.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:38.079 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:38.080 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:38.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:09:38.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 6(Integer), 35(Long)
+2017-08-02 16:09:38.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:09:38.194 |-DEBUG [http-nio-8089-exec-2] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:09:38.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 6(Integer), 35(Long), 0(Integer), 10(Integer)
+2017-08-02 16:09:38.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-08-02 16:09:39.147 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.147 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.147 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.147 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.176 |-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-08-02 16:09:39.176 |-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-08-02 16:09:39.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:39.177 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:39.191 |-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-08-02 16:09:39.192 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:39.192 |-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-08-02 16:09:39.192 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:39.215 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:39.216 |-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-08-02 16:09:39.216 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.219 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:39.219 |-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-08-02 16:09:39.220 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.220 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:39.221 |-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-08-02 16:09:39.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.244 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:39.245 |-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-08-02 16:09:39.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.248 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:39.249 |-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-08-02 16:09:39.249 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.259 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:39.260 |-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-08-02 16:09:39.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.271 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:39.276 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:39.290 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:39.290 |-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-08-02 16:09:39.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.303 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:39.304 |-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-08-02 16:09:39.304 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:39.317 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:39.320 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:39.321 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.325 |-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-08-02 16:09:39.325 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:39.325 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:09:39.326 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.327 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:09:39.327 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:09:39.344 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:39.345 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:39.347 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.351 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:09:39.352 |-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-08-02 16:09:39.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:09:39.353 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:09:39.374 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:39.375 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:39.376 |-DEBUG [http-nio-8089-exec-10] 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-08-02 16:09:39.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:09:39.382 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:09:39.405 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:09:39.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:09:39.479 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:09:39.552 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:09:40.527 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:40.574 |-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-08-02 16:09:40.575 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:40.647 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:40.648 |-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-08-02 16:09:40.649 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:40.677 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:40.678 |-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-08-02 16:09:40.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:40.705 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:40.747 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:40.748 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:40.750 |-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-08-02 16:09:40.750 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:09:40.780 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:09:43.377 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:43.407 |-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-08-02 16:09:43.408 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:43.481 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:43.482 |-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-08-02 16:09:43.482 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:43.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:43.512 |-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-08-02 16:09:43.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:43.539 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:43.572 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:43.573 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:43.607 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:43.608 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 113(Long)
+2017-08-02 16:09:43.635 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:43.636 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:43.637 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 50(Long)
+2017-08-02 16:09:43.664 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:43.666 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2017-08-02 16:09:43.666 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 51(Long)
+2017-08-02 16:09:43.693 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2017-08-02 16:09:43.694 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.deleteByDeptWorkdate [159] -| ==>  Preparing: DELETE FROM sys_team_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:09:43.694 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.deleteByDeptWorkdate [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:09:43.748 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.deleteByDeptWorkdate [159] -| <==    Updates: 3
+2017-08-02 16:09:43.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:43.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2249,2250,2267,2253,2259,2269,2255,2257,2264,2261,2699,2266,2275,2278,2268,2700,2270,2273,2283(String), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp)
+2017-08-02 16:09:43.801 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:43.802 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:43.803 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2249,2250,2267,2256,2262,2253,2258,2259,2269,2698,2251,2252,2272,2255,2257,2264,2271,2265,2260,2261,2263,2699,2282,2276,2266,2275,2278,2279,2268,2700,2270,2277,2274,2273,2283,2280(String), 1(Integer), 50(Long), 2017-08-02 08:00:00.0(Timestamp), 2017-08-02 15:00:00.0(Timestamp)
+2017-08-02 16:09:43.858 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:43.859 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2017-08-02 16:09:43.860 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2248,2249,2250,2254,2267,2256,2262,2253,2258,2259,2269,2698,2252,2272,2255,2257,2271,2265,2260,2263,2699,2282,2276,2266,2275,2278,2279,2268,2700,2270,2277,2283,2280(String), 2(Integer), 51(Long), 2017-08-02 15:00:00.0(Timestamp), 2017-08-02 23:00:00.0(Timestamp)
+2017-08-02 16:09:43.912 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:09:43.930 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:43.959 |-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-08-02 16:09:43.959 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:44.034 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:44.034 |-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-08-02 16:09:44.035 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:44.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:44.067 |-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-08-02 16:09:44.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:44.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:44.126 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:44.127 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:44.129 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-08-02 16:09:44.130 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:09:44.160 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:09:45.258 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:45.312 |-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-08-02 16:09:45.312 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:45.386 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:45.387 |-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-08-02 16:09:45.388 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:45.422 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:45.423 |-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-08-02 16:09:45.423 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:45.450 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:45.507 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:45.508 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:45.509 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:09:45.510 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:09:45.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:09:45.574 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:45.604 |-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-08-02 16:09:45.604 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:09:45.678 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:09:45.679 |-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-08-02 16:09:45.679 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:45.711 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:09:45.712 |-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-08-02 16:09:45.712 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:09:45.740 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:09:45.780 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:09:45.781 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:09:45.782 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:09:45.783 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:09:45.817 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:10:23.244 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.244 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.290 |-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-08-02 16:10:23.291 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:23.299 |-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-08-02 16:10:23.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:23.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:23.351 |-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-08-02 16:10:23.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.364 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:23.364 |-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-08-02 16:10:23.365 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:23.398 |-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-08-02 16:10:23.399 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.412 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:23.413 |-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-08-02 16:10:23.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:23.462 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:23.502 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:23.503 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.520 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:23.521 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:10:23.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:10:23.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:10:23.601 |-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-08-02 16:10:23.601 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:23.675 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.675 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.728 |-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-08-02 16:10:23.729 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:23.732 |-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-08-02 16:10:23.732 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:23.783 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:23.784 |-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-08-02 16:10:23.785 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.801 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:23.802 |-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-08-02 16:10:23.802 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.831 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:23.832 |-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-08-02 16:10:23.833 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.846 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:23.847 |-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-08-02 16:10:23.847 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:23.879 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:23.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:23.934 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:23.935 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.936 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:10:23.937 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:10:23.940 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:23.941 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:23.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:10:23.942 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:10:23.988 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:10:24.011 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:10:24.021 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.095 |-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-08-02 16:10:24.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:24.170 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:24.171 |-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-08-02 16:10:24.171 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:24.200 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:24.201 |-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-08-02 16:10:24.201 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:24.227 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:24.291 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:24.292 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.295 |-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-08-02 16:10:24.296 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:10:24.568 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:10:24.591 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.659 |-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-08-02 16:10:24.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:24.732 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:24.733 |-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-08-02 16:10:24.733 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:24.765 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:24.766 |-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-08-02 16:10:24.766 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:24.793 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:24.849 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:24.850 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.854 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:10:24.854 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:10:24.884 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:10:24.949 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.949 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.949 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.949 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:24.977 |-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-08-02 16:10:24.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:24.978 |-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-08-02 16:10:24.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:25.006 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:25.007 |-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-08-02 16:10:25.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.008 |-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-08-02 16:10:25.008 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:25.010 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:10:25.010 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:25.036 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:25.036 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:25.037 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:25.037 |-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-08-02 16:10:25.037 |-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-08-02 16:10:25.038 |-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-08-02 16:10:25.038 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.038 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.038 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.050 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:25.051 |-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-08-02 16:10:25.051 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.065 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:25.068 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:25.068 |-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-08-02 16:10:25.068 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.078 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:25.079 |-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-08-02 16:10:25.079 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.095 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:25.097 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:25.098 |-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-08-02 16:10:25.098 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:25.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:25.125 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:25.126 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:25.132 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:25.133 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:25.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-08-02 16:10:25.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:10:25.157 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:25.157 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:25.158 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:25.160 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:10:25.161 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:10:25.164 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:10:25.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:10:25.182 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:10:25.211 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:25.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:10:25.212 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:25.217 |-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-08-02 16:10:25.217 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:10:25.254 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:10:25.264 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:10:25.265 |-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-08-02 16:10:25.266 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:10:25.328 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:10:26.705 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:26.734 |-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-08-02 16:10:26.735 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:26.813 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:26.813 |-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-08-02 16:10:26.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:26.847 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:26.848 |-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-08-02 16:10:26.848 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:26.882 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:26.933 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:26.934 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:26.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:10:26.936 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:10:26.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:10:27.028 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:27.059 |-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-08-02 16:10:27.060 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:27.133 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:27.134 |-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-08-02 16:10:27.134 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:27.170 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:27.171 |-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-08-02 16:10:27.171 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:27.202 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:27.241 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:27.243 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:27.245 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:10:27.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:10:27.293 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:10:33.772 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:33.772 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:33.801 |-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-08-02 16:10:33.801 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:33.802 |-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-08-02 16:10:33.802 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:33.829 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:33.830 |-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-08-02 16:10:33.831 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:33.860 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:33.861 |-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-08-02 16:10:33.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:33.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:33.875 |-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-08-02 16:10:33.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:33.889 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:33.903 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:33.904 |-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-08-02 16:10:33.904 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:33.941 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:33.941 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:33.942 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:33.982 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:33.983 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.073 |-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-08-02 16:10:34.074 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:10:34.113 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:10:34.115 |-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-08-02 16:10:34.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.143 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:34.172 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.172 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.219 |-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-08-02 16:10:34.220 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.221 |-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-08-02 16:10:34.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.249 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.250 |-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-08-02 16:10:34.250 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.277 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:34.278 |-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-08-02 16:10:34.279 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.295 |-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-08-02 16:10:34.295 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.305 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:34.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:34.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:10:34.324 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.335 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:34.337 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.338 |-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-08-02 16:10:34.339 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:10:34.351 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:34.384 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:34.385 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:10:34.386 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:10:34.412 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:10:34.413 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:10:34.421 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.449 |-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-08-02 16:10:34.450 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.477 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.478 |-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-08-02 16:10:34.479 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.510 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:34.511 |-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-08-02 16:10:34.511 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.536 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:34.567 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:34.568 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.572 |-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-08-02 16:10:34.573 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:10:34.664 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:10:34.689 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.717 |-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-08-02 16:10:34.718 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.746 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.747 |-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-08-02 16:10:34.747 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.778 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:34.779 |-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-08-02 16:10:34.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.805 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:34.834 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:34.836 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:10:34.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:10:34.865 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:10:34.935 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.935 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.935 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.935 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:34.964 |-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-08-02 16:10:34.965 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.966 |-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-08-02 16:10:34.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.967 |-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-08-02 16:10:34.967 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.968 |-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-08-02 16:10:34.969 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:34.993 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.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-08-02 16:10:34.994 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.995 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.996 |-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-08-02 16:10:34.996 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:34.996 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:34.997 |-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-08-02 16:10:34.997 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.022 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:35.023 |-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-08-02 16:10:35.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.023 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:35.024 |-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-08-02 16:10:35.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:35.025 |-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-08-02 16:10:35.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:35.044 |-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-08-02 16:10:35.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:35.052 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:35.054 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:35.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:35.074 |-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-08-02 16:10:35.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:35.083 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:35.084 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:35.085 |-DEBUG [http-nio-8089-exec-10] 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-08-02 16:10:35.086 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:10:35.086 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:35.087 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:35.092 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:35.092 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:35.094 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:10:35.094 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:10:35.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:35.114 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:10:35.124 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:10:35.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:10:35.137 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:10:35.138 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:35.139 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:35.143 |-DEBUG [http-nio-8089-exec-2] 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-08-02 16:10:35.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:10:35.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:10:35.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:10:35.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:10:35.198 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:10:35.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:10:36.376 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:36.420 |-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-08-02 16:10:36.420 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:36.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:36.494 |-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-08-02 16:10:36.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:36.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:36.525 |-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-08-02 16:10:36.525 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:36.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:36.595 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:36.596 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:36.598 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:10:36.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:10:36.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:10:36.675 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:36.705 |-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-08-02 16:10:36.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:10:36.778 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:10:36.779 |-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-08-02 16:10:36.779 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:36.807 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:10:36.809 |-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-08-02 16:10:36.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:10:36.838 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:10:36.880 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:10:36.881 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:10:36.883 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:10:36.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:10:36.918 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:11:21.316 |-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-08-02 16:11:21.317 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:21.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:21.394 |-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-08-02 16:11:21.394 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:21.422 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:21.423 |-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-08-02 16:11:21.424 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:21.451 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:21.453 |-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-08-02 16:11:21.453 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:21.527 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:21.528 |-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-08-02 16:11:21.529 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:21.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:21.558 |-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-08-02 16:11:21.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:21.585 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:23.364 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.364 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.393 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:11:23.394 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:23.397 |-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-08-02 16:11:23.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:23.426 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:23.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:11:23.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.456 |-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-08-02 16:11:23.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.472 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:23.473 |-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-08-02 16:11:23.473 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:23.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:11:23.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.512 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:23.513 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:23.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:11:23.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:11:23.558 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:23.559 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:11:23.575 |-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-08-02 16:11:23.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.626 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.626 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.655 |-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-08-02 16:11:23.655 |-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-08-02 16:11:23.655 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:23.655 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:23.687 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:23.688 |-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-08-02 16:11:23.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.720 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.721 |-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-08-02 16:11:23.721 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.727 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:23.728 |-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-08-02 16:11:23.728 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.747 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:23.756 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.756 |-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-08-02 16:11:23.757 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.776 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:23.777 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.779 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:11:23.779 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:11:23.781 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:23.811 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:23.812 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:11:23.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:11:23.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:11:23.851 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:11:23.852 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:23.880 |-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-08-02 16:11:23.880 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:23.953 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:23.954 |-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-08-02 16:11:23.954 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:23.981 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:23.982 |-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-08-02 16:11:23.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:24.007 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:24.037 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:24.038 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:24.041 |-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-08-02 16:11:24.042 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:11:24.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:11:24.346 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:24.374 |-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-08-02 16:11:24.375 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:24.447 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:24.449 |-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-08-02 16:11:24.449 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:24.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:24.478 |-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-08-02 16:11:24.478 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:24.503 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:24.533 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:24.535 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:24.539 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:11:24.540 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:11:24.566 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:11:24.693 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:24.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:11:24.723 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:24.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:24.796 |-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-08-02 16:11:24.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:24.824 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:24.825 |-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-08-02 16:11:24.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:24.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:24.880 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:24.881 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:24.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:11:24.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 34(Long)
+2017-08-02 16:11:24.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:11:24.954 |-DEBUG [http-nio-8089-exec-2] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:11:24.955 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 34(Long), 0(Integer), 10(Integer)
+2017-08-02 16:11:24.990 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 1
+2017-08-02 16:11:27.041 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.041 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.041 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.043 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.073 |-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-08-02 16:11:27.073 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:27.080 |-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-08-02 16:11:27.081 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:27.096 |-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-08-02 16:11:27.096 |-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-08-02 16:11:27.097 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:27.097 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:27.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:27.122 |-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-08-02 16:11:27.122 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.130 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:27.130 |-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-08-02 16:11:27.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:27.131 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.131 |-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-08-02 16:11:27.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.145 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:27.146 |-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-08-02 16:11:27.146 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.149 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:27.150 |-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-08-02 16:11:27.151 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:27.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:11:27.174 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.175 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:27.176 |-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-08-02 16:11:27.176 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:27.183 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:27.184 |-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-08-02 16:11:27.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:27.206 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:27.208 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.212 |-DEBUG [http-nio-8089-exec-6] 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-08-02 16:11:27.212 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:27.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
+2017-08-02 16:11:27.215 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:27.222 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:27.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:11:27.238 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:11:27.239 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:11:27.244 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:27.245 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.247 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:27.247 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:11:27.247 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:11:27.247 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.264 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:11:27.271 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:27.272 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:27.274 |-DEBUG [http-nio-8089-exec-1] 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-08-02 16:11:27.274 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:11:27.289 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:11:27.290 |-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-08-02 16:11:27.291 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
+2017-08-02 16:11:27.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:11:27.363 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:11:28.593 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:28.622 |-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-08-02 16:11:28.623 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:28.697 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:28.698 |-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-08-02 16:11:28.698 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:28.725 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:28.726 |-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-08-02 16:11:28.727 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:28.763 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:28.793 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:28.794 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:28.796 |-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-08-02 16:11:28.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:11:28.824 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:11:30.185 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:30.214 |-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-08-02 16:11:30.214 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:30.291 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:30.292 |-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-08-02 16:11:30.294 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:30.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:30.323 |-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-08-02 16:11:30.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:30.349 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:30.379 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:30.380 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:30.387 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 无效的参数类型
+org.springframework.http.converter.HttpMessageNotReadableException: Could not read document: Can not deserialize value of type java.util.Date from String "NaN-aN-aN 23:00:00": expected format "yyyy-MM-dd HH:mm:ss"
+ at [Source: java.io.PushbackInputStream@334ecf47; line: 1, column: 80] (through reference chain: java.util.ArrayList[0]->com.xintong.visualinspection.bean.TeamClass["start_time"]); nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type java.util.Date from String "NaN-aN-aN 23:00:00": expected format "yyyy-MM-dd HH:mm:ss"
+ at [Source: java.io.PushbackInputStream@334ecf47; line: 1, column: 80] (through reference chain: java.util.ArrayList[0]->com.xintong.visualinspection.bean.TeamClass["start_time"])
+	at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:240)
+	at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.read(AbstractJackson2HttpMessageConverter.java:225)
+	at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodArgumentResolver.readWithMessageConverters(AbstractMessageConverterMethodArgumentResolver.java:201)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.readWithMessageConverters(RequestResponseBodyMethodProcessor.java:150)
+	at org.springframework.web.servlet.mvc.method.annotation.RequestResponseBodyMethodProcessor.resolveArgument(RequestResponseBodyMethodProcessor.java:128)
+	at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121)
+	at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:158)
+	at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:128)
+	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)
+Caused by: com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type java.util.Date from String "NaN-aN-aN 23:00:00": expected format "yyyy-MM-dd HH:mm:ss"
+ at [Source: java.io.PushbackInputStream@334ecf47; line: 1, column: 80] (through reference chain: java.util.ArrayList[0]->com.xintong.visualinspection.bean.TeamClass["start_time"])
+	at com.fasterxml.jackson.databind.exc.InvalidFormatException.from(InvalidFormatException.java:74)
+	at com.fasterxml.jackson.databind.DeserializationContext.weirdStringException(DeserializationContext.java:1410)
+	at com.fasterxml.jackson.databind.DeserializationContext.handleWeirdStringValue(DeserializationContext.java:926)
+	at com.fasterxml.jackson.databind.deser.std.DateDeserializers$DateBasedDeserializer._parseDate(DateDeserializers.java:156)
+	at com.fasterxml.jackson.databind.deser.std.DateDeserializers$DateDeserializer.deserialize(DateDeserializers.java:259)
+	at com.fasterxml.jackson.databind.deser.std.DateDeserializers$DateDeserializer.deserialize(DateDeserializers.java:242)
+	at com.fasterxml.jackson.databind.deser.SettableBeanProperty.deserialize(SettableBeanProperty.java:504)
+	at com.fasterxml.jackson.databind.deser.impl.MethodProperty.deserializeAndSet(MethodProperty.java:101)
+	at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserializeFromObject(BeanDeserializer.java:357)
+	at com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:148)
+	at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:287)
+	at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:259)
+	at com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:26)
+	at com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:3798)
+	at com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:2922)
+	at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:237)
+	... 116 common frames omitted
+2017-08-02 16:11:30.388 |-WARN  [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.http.converter.HttpMessageNotReadableException: Could not read document: Can not deserialize value of type java.util.Date from String "NaN-aN-aN 23:00:00": expected format "yyyy-MM-dd HH:mm:ss"
+ at [Source: java.io.PushbackInputStream@334ecf47; line: 1, column: 80] (through reference chain: java.util.ArrayList[0]->com.xintong.visualinspection.bean.TeamClass["start_time"]); nested exception is com.fasterxml.jackson.databind.exc.InvalidFormatException: Can not deserialize value of type java.util.Date from String "NaN-aN-aN 23:00:00": expected format "yyyy-MM-dd HH:mm:ss"
+ at [Source: java.io.PushbackInputStream@334ecf47; line: 1, column: 80] (through reference chain: java.util.ArrayList[0]->com.xintong.visualinspection.bean.TeamClass["start_time"])
+2017-08-02 16:11:32.750 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:32.780 |-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-08-02 16:11:32.780 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:11:32.854 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:32.855 |-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-08-02 16:11:32.856 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:32.885 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:32.886 |-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-08-02 16:11:32.886 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:11:32.911 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:32.941 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:11:32.942 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:11:32.945 |-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-08-02 16:11:32.945 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:11:32.976 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:11:52.201 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.201 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:11:52.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:52.232 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:11:52.232 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:52.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:52.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:11:52.261 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.289 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:11:52.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:52.303 |-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-08-02 16:11:52.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.318 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:52.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.333 |-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-08-02 16:11:52.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.350 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:52.351 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.359 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:52.388 |-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-08-02 16:11:52.388 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:52.389 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:11:52.389 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.420 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:11:52.421 |-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-08-02 16:11:52.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.451 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.478 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.478 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.512 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:11:52.513 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:52.514 |-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-08-02 16:11:52.514 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:52.547 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:52.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:11:52.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.576 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.577 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:11:52.578 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.588 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:52.589 |-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-08-02 16:11:52.589 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.604 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:52.618 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.619 |-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-08-02 16:11:52.620 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.633 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:52.634 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:11:52.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:11:52.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:52.674 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:52.675 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.676 |-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-08-02 16:11:52.677 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:11:52.705 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:11:52.709 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:11:52.713 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.748 |-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-08-02 16:11:52.748 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:52.821 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:52.822 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:11:52.822 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.850 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:52.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:11:52.851 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:52.877 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:52.906 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:52.907 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:52.912 |-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-08-02 16:11:52.913 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:11:53.179 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:11:53.205 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.233 |-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-08-02 16:11:53.234 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:53.307 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:53.308 |-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-08-02 16:11:53.308 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.336 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:53.337 |-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-08-02 16:11:53.337 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.363 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:53.392 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:53.393 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.397 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:11:53.398 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:11:53.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:11:53.503 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.504 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.504 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.504 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.533 |-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-08-02 16:11:53.534 |-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-08-02 16:11:53.534 |-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-08-02 16:11:53.534 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:53.534 |-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-08-02 16:11:53.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:53.534 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:53.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:11:53.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:53.562 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:53.562 |-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-08-02 16:11:53.563 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.563 |-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-08-02 16:11:53.563 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.563 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:53.564 |-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-08-02 16:11:53.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:53.590 |-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-08-02 16:11:53.590 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.593 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:53.593 |-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-08-02 16:11:53.593 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.595 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:53.595 |-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-08-02 16:11:53.596 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:11:53.608 |-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-08-02 16:11:53.608 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.620 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:53.628 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:53.631 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:53.645 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:11:53.646 |-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-08-02 16:11:53.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:11:53.662 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:53.663 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:53.663 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:53.663 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.664 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.664 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.665 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:11:53.666 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:11:53.668 |-DEBUG [http-nio-8089-exec-6] 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-08-02 16:11:53.668 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:11:53.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:11:53.692 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:11:53.694 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:11:53.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:11:53.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:11:53.695 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:11:53.696 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:11:53.707 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:11:53.708 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:11:53.709 |-DEBUG [http-nio-8089-exec-10] 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-08-02 16:11:53.710 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:11:53.722 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:11:53.746 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:11:53.770 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:12:28.379 |-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-08-02 16:12:28.380 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:28.460 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:28.461 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:12:28.462 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:28.492 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:28.493 |-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-08-02 16:12:28.494 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:28.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:28.527 |-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-08-02 16:12:28.527 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:28.602 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:28.602 |-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-08-02 16:12:28.603 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:28.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:28.633 |-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-08-02 16:12:28.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:28.659 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.022 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.045 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.051 |-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-08-02 16:12:29.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.076 |-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-08-02 16:12:29.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:12:29.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.124 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.125 |-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-08-02 16:12:29.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.140 |-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-08-02 16:12:29.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.155 |-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-08-02 16:12:29.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.182 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.197 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.198 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.212 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.213 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:12:29.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:12:29.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:12:29.259 |-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-08-02 16:12:29.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.324 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.324 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.351 |-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-08-02 16:12:29.351 |-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-08-02 16:12:29.352 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.352 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.382 |-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-08-02 16:12:29.382 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.411 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.412 |-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-08-02 16:12:29.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.426 |-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-08-02 16:12:29.426 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.438 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.455 |-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-08-02 16:12:29.456 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.468 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.469 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.471 |-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-08-02 16:12:29.471 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:12:29.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.513 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.514 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.515 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:12:29.516 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:12:29.544 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:12:29.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:12:29.555 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.584 |-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-08-02 16:12:29.585 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.613 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.614 |-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-08-02 16:12:29.614 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.642 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.643 |-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-08-02 16:12:29.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.669 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.698 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.699 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.703 |-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-08-02 16:12:29.704 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:12:29.820 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:12:29.845 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.873 |-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-08-02 16:12:29.874 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:29.902 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:29.902 |-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-08-02 16:12:29.903 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.932 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:29.933 |-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-08-02 16:12:29.933 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:29.960 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:29.993 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:29.995 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:29.998 |-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-08-02 16:12:29.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:12:30.025 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:12:30.191 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:30.232 |-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-08-02 16:12:30.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:30.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:30.261 |-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-08-02 16:12:30.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:30.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:30.291 |-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-08-02 16:12:30.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:30.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:30.359 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:30.360 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:30.394 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:12:30.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 34(Long)
+2017-08-02 16:12:30.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:12:30.429 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:30.430 |-DEBUG [http-nio-8089-exec-2] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:12:30.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 34(Long), 0(Integer), 10(Integer)
+2017-08-02 16:12:30.459 |-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-08-02 16:12:30.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:30.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 1
+2017-08-02 16:12:30.488 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:30.489 |-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-08-02 16:12:30.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:30.517 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:30.518 |-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-08-02 16:12:30.518 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:30.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:30.573 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:30.574 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:30.609 |-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, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:12:30.609 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 6(Integer), 34(Long)
+2017-08-02 16:12:30.658 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:12:30.660 |-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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:12:30.660 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 6(Integer), 34(Long), 0(Integer), 10(Integer)
+2017-08-02 16:12:30.712 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 10
+2017-08-02 16:12:31.642 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:31.670 |-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-08-02 16:12:31.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:31.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:31.699 |-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-08-02 16:12:31.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:31.729 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:31.730 |-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-08-02 16:12:31.730 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:31.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:31.786 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:31.787 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:31.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT *, CONCAT(substr(start_time, 1, 16), '-', substr(end_time, 11, 6)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = check_status) AS check_status_name FROM check_task WHERE 1 = 1 AND check_status >= ? AND check_status <= ? AND checked_dept = ?) table_count 
+2017-08-02 16:12:31.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| ==> Parameters: 11(Integer), 14(Integer), 34(Long)
+2017-08-02 16:12:31.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListBySubmited_COUNT [159] -| <==      Total: 1
+2017-08-02 16:12:33.141 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.142 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.142 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.143 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.171 |-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-08-02 16:12:33.171 |-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-08-02 16:12:33.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:33.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:33.173 |-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-08-02 16:12:33.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:33.186 |-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-08-02 16:12:33.186 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:12:33.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:33.220 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:33.220 |-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-08-02 16:12:33.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-08-02 16:12:33.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.221 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.221 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:33.222 |-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-08-02 16:12:33.222 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:12:33.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:12:33.249 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.251 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:33.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:33.251 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:12:33.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:33.251 |-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-08-02 16:12:33.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.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-08-02 16:12:33.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.252 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:33.289 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:33.290 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:33.291 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:12:33.292 |-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-08-02 16:12:33.292 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:12:33.317 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:33.318 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.319 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:33.319 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:12:33.319 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.320 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:12:33.321 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:12:33.321 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:33.322 |-DEBUG [http-nio-8089-exec-2] 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-08-02 16:12:33.322 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
+2017-08-02 16:12:33.323 |-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-08-02 16:12:33.324 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:12:33.348 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:12:33.348 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:12:33.349 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:12:33.349 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:12:33.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:12:33.352 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:12:33.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:12:33.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:12:33.382 |-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-08-02 16:12:33.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
+2017-08-02 16:12:33.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:15:56.803 |-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-08-02 16:15:56.808 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:56.884 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:56.913 |-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-08-02 16:15:56.914 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:56.944 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:56.946 |-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-08-02 16:15:56.947 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:56.973 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:56.975 |-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-08-02 16:15:56.976 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:57.049 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:57.050 |-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-08-02 16:15:57.051 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.080 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:57.081 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:15:57.082 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:57.565 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:57.565 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:57.595 |-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-08-02 16:15:57.595 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:57.668 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:57.669 |-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-08-02 16:15:57.669 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.698 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:57.699 |-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-08-02 16:15:57.700 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.735 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:57.764 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:57.766 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:57.830 |-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-08-02 16:15:57.830 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:57.903 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:57.904 |-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-08-02 16:15:57.905 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.943 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:57.944 |-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-08-02 16:15:57.945 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:57.974 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:58.059 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:58.060 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.150 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:15:58.151 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:15:58.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:15:58.189 |-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-08-02 16:15:58.189 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.223 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:58.251 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.251 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.280 |-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-08-02 16:15:58.281 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:58.353 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:58.355 |-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-08-02 16:15:58.355 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.363 |-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-08-02 16:15:58.364 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:58.389 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:58.390 |-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-08-02 16:15:58.390 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.395 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:58.424 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:58.424 |-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-08-02 16:15:58.425 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.462 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:58.463 |-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-08-02 16:15:58.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.498 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:58.511 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:58.513 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.515 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:15:58.516 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:15:58.528 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:58.529 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.530 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:15:58.531 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:15:58.546 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:15:58.605 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:15:58.614 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.643 |-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-08-02 16:15:58.643 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:58.717 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:58.718 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:15:58.719 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.752 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:58.753 |-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-08-02 16:15:58.753 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:58.784 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:58.812 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:58.814 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:58.823 |-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-08-02 16:15:58.823 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:15:59.096 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:15:59.138 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:59.166 |-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-08-02 16:15:59.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:59.239 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:59.240 |-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-08-02 16:15:59.241 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:59.270 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:59.271 |-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-08-02 16:15:59.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:59.298 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:59.330 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:59.332 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:59.337 |-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-08-02 16:15:59.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:15:59.366 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:15:59.483 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:59.511 |-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-08-02 16:15:59.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:15:59.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:15:59.585 |-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-08-02 16:15:59.586 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:59.614 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:15:59.616 |-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-08-02 16:15:59.616 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:15:59.642 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:15:59.671 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:15:59.673 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:15:59.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2017-08-02 16:15:59.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 34(Long)
+2017-08-02 16:15:59.751 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:15:59.754 |-DEBUG [http-nio-8089-exec-9] 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, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status = ? AND t.checked_dept = ? limit ?,? 
+2017-08-02 16:15:59.755 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| ==> Parameters: 5(Integer), 34(Long), 0(Integer), 10(Integer)
+2017-08-02 16:15:59.792 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getList [159] -| <==      Total: 1
+2017-08-02 16:16:01.533 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.533 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.533 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.533 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.567 |-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-08-02 16:16:01.567 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:16:01.624 |-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-08-02 16:16:01.624 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:16:01.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:01.641 |-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-08-02 16:16:01.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.652 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:01.653 |-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-08-02 16:16:01.653 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.656 |-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-08-02 16:16:01.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:16:01.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:01.672 |-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-08-02 16:16:01.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.682 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:01.683 |-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-08-02 16:16:01.683 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:01.683 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:01.709 |-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-08-02 16:16:01.710 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.711 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:01.729 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:16:01.730 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.733 |-DEBUG [http-nio-8089-exec-2] 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-08-02 16:16:01.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:16:01.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:01.738 |-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-08-02 16:16:01.738 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:01.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:16:01.777 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:01.802 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:16:01.803 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.807 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:16:01.807 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:01.809 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:16:01.810 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:16:01.835 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:16:01.891 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:16:01.892 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
+2017-08-02 16:16:01.920 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:16:03.436 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:03.523 |-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-08-02 16:16:03.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:16:03.553 |-ERROR [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServlet] [181] -| Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception
+org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
+	at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:204)
+	at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.getConnection(JedisConnectionFactory.java:348)
+	at org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:129)
+	at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:92)
+	at org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:79)
+	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:194)
+	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:169)
+	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:91)
+	at org.springframework.data.redis.core.DefaultValueOperations.get(DefaultValueOperations.java:43)
+	at com.xintong.system.securityTools.RedisCacheUtil.getUserByUserName(RedisCacheUtil.java:19)
+	at com.xintong.system.securityTools.JwtAuthenticationTokenFilter.doFilterInternal(JwtAuthenticationTokenFilter.java:60)
+	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)
+Caused by: redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
+	at redis.clients.util.Pool.getResource(Pool.java:53)
+	at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
+	at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
+	at org.springframework.data.redis.connection.jedis.JedisConnectionFactory.fetchJedisConnector(JedisConnectionFactory.java:194)
+	... 67 common frames omitted
+Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.SocketTimeoutException: Read timed out
+	at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:202)
+	at redis.clients.util.RedisInputStream.readByte(RedisInputStream.java:40)
+	at redis.clients.jedis.Protocol.process(Protocol.java:151)
+	at redis.clients.jedis.Protocol.read(Protocol.java:215)
+	at redis.clients.jedis.Connection.readProtocolWithCheckingBroken(Connection.java:340)
+	at redis.clients.jedis.Connection.getStatusCodeReply(Connection.java:239)
+	at redis.clients.jedis.BinaryJedis.auth(BinaryJedis.java:2139)
+	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:108)
+	at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:868)
+	at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:435)
+	at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:363)
+	at redis.clients.util.Pool.getResource(Pool.java:49)
+	... 70 common frames omitted
+Caused by: java.net.SocketTimeoutException: Read timed out
+	at java.net.SocketInputStream.socketRead0(Native Method)
+	at java.net.SocketInputStream.socketRead(SocketInputStream.java:116)
+	at java.net.SocketInputStream.read(SocketInputStream.java:170)
+	at java.net.SocketInputStream.read(SocketInputStream.java:141)
+	at java.net.SocketInputStream.read(SocketInputStream.java:127)
+	at redis.clients.util.RedisInputStream.ensureFill(RedisInputStream.java:196)
+	... 81 common frames omitted
+2017-08-02 16:16:03.555 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:03.556 |-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-08-02 16:16:03.557 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:03.586 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:03.587 |-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-08-02 16:16:03.587 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:03.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:03.707 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:16:03.708 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:03.710 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:16:03.711 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:16:03.759 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:16:03.783 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:03.868 |-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-08-02 16:16:03.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:16:03.896 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:03.897 |-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-08-02 16:16:03.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:03.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:03.926 |-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-08-02 16:16:03.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:16:03.952 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:04.038 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:16:04.040 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:16:04.043 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:16:04.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:16:04.078 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:16:27.739 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:16:27.824 |-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-08-02 16:16:27.825 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:16:27.853 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:27.854 |-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-08-02 16:16:27.855 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:16:27.884 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:27.885 |-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-08-02 16:16:27.886 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:16:27.913 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:27.999 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:16:28.001 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:16:28.003 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:16:28.004 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:16:28.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:16:28.064 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:16:28.149 |-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-08-02 16:16:28.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:16:28.178 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:16:28.179 |-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-08-02 16:16:28.179 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:16:28.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:16:28.208 |-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-08-02 16:16:28.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:16:28.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:16:28.323 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:16:28.324 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:16:28.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:16:28.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:16:28.363 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:19:20.487 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:19:20.637 |-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-08-02 16:19:20.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:19:20.666 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:19:20.702 |-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-08-02 16:19:20.703 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:19:20.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:19:20.745 |-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-08-02 16:19:20.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:19:20.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:19:20.802 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:19:20.803 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:19:20.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:19:20.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:19:20.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:19:20.861 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:19:20.890 |-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-08-02 16:19:20.891 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:19:20.918 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:19:20.919 |-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-08-02 16:19:20.919 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:19:20.950 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:19:20.951 |-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-08-02 16:19:20.951 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:19:20.977 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:19:21.007 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:19:21.008 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:19:21.009 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:19:21.010 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:19:21.043 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:19:38.964 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:19:38.994 |-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-08-02 16:19:38.994 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:19:39.022 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:19:39.023 |-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-08-02 16:19:39.023 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:19:39.056 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:19:39.057 |-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-08-02 16:19:39.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:19:39.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:19:39.121 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:19:39.122 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:19:39.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:19:39.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:19:39.161 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:19:39.194 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:19:39.226 |-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-08-02 16:19:39.226 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:19:39.253 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:19:39.254 |-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-08-02 16:19:39.254 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:19:39.299 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:19:39.300 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:19:39.300 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:19:39.337 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:19:39.366 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:19:39.368 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:19:39.370 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:19:39.370 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:19:39.415 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:28:43.380 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.380 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.592 |-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-08-02 16:28:43.593 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:43.621 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:43.626 |-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-08-02 16:28:43.626 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:43.648 |-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-08-02 16:28:43.649 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.655 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:43.683 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:43.684 |-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-08-02 16:28:43.684 |-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-08-02 16:28:43.684 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.685 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.710 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:43.714 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:43.716 |-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-08-02 16:28:43.716 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.749 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:43.769 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:43.770 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.783 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:43.785 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.817 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2017-08-02 16:28:43.818 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:28:43.847 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:28:43.848 |-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-08-02 16:28:43.849 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:43.906 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.906 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:43.936 |-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-08-02 16:28:43.936 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:43.961 |-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-08-02 16:28:43.961 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:43.964 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:43.965 |-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-08-02 16:28:43.965 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.989 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:43.990 |-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-08-02 16:28:43.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:43.994 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:43.995 |-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-08-02 16:28:43.996 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.019 |-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-08-02 16:28:44.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.025 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.055 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.057 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.058 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2017-08-02 16:28:44.059 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:28:44.073 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.074 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.075 |-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-08-02 16:28:44.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:28:44.087 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:28:44.104 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:28:44.110 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.138 |-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-08-02 16:28:44.139 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.166 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.166 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:28:44.167 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.197 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.198 |-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-08-02 16:28:44.198 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.227 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.257 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.258 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.262 |-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-08-02 16:28:44.263 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:28:44.429 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:28:44.457 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:28:44.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.516 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.516 |-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-08-02 16:28:44.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.546 |-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-08-02 16:28:44.546 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.571 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.600 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.601 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2017-08-02 16:28:44.605 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:28:44.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:28:44.707 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.707 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.707 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.707 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.735 |-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-08-02 16:28:44.736 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.741 |-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-08-02 16:28:44.742 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.764 |-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-08-02 16:28:44.765 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.769 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.770 |-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-08-02 16:28:44.770 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.791 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.792 |-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-08-02 16:28:44.792 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.799 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.800 |-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-08-02 16:28:44.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.805 |-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-08-02 16:28:44.805 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.808 |-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-08-02 16:28:44.808 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:44.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.832 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.833 |-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-08-02 16:28:44.833 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.835 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:44.836 |-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-08-02 16:28:44.836 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.848 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.848 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.858 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.859 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.862 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.863 |-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-08-02 16:28:44.863 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.866 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:44.867 |-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-08-02 16:28:44.868 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:44.875 |-DEBUG [http-nio-8089-exec-9] 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-08-02 16:28:44.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 35(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:28:44.890 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.896 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:44.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:28:44.897 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 35(Integer)
+2017-08-02 16:28:44.904 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:28:44.920 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.921 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.922 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:28:44.923 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:28:44.926 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:28:44.932 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:44.932 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:44.935 |-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-08-02 16:28:44.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 35(Long), 1(Long)
+2017-08-02 16:28:44.949 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:28:44.960 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:28:44.961 |-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-08-02 16:28:44.961 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 35(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:28:44.988 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:28:45.971 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:46.001 |-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-08-02 16:28:46.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:46.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:46.030 |-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-08-02 16:28:46.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:46.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:46.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:28:46.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:46.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:46.120 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:46.121 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:46.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:28:46.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:28:46.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:28:46.178 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:46.208 |-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-08-02 16:28:46.208 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:28:46.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:28:46.236 |-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-08-02 16:28:46.236 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:46.265 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:28:46.266 |-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-08-02 16:28:46.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:28:46.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:28:46.322 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:28:46.323 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:28:46.325 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:28:46.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:28:46.364 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:29:16.999 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:17.029 |-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-08-02 16:29:17.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:17.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:17.058 |-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-08-02 16:29:17.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:17.092 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:17.092 |-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-08-02 16:29:17.093 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:17.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:17.149 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:17.150 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:17.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:29:17.154 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:17.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 0
+2017-08-02 16:29:17.214 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:29:17.214 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:17.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:29:17.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:17.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2267(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), null, 2283(Long)
+2017-08-02 16:29:17.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:17.339 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:17.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2259(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), null, 2273(Long)
+2017-08-02 16:29:17.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:17.394 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:17.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2278(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), -1(Integer), null, 2283(Long)
+2017-08-02 16:29:17.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:17.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:17.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2261(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), -3(Integer), null, 2273(Long)
+2017-08-02 16:29:17.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:17.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:17.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2267,2259,2278,2261,(String), 113(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:17.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:29:17.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:17.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:17.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:29:17.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:17.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:17.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:29:19.453 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:19.486 |-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-08-02 16:29:19.487 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:19.521 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:19.522 |-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-08-02 16:29:19.522 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:19.554 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:19.555 |-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-08-02 16:29:19.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:19.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:19.613 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:19.614 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:19.616 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:29:19.616 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:29:19.644 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:29:19.677 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:19.707 |-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-08-02 16:29:19.707 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:19.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:19.747 |-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-08-02 16:29:19.747 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:19.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:19.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2017-08-02 16:29:19.779 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:19.804 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:19.835 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:19.836 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:19.837 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:29:19.838 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:19.902 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 4
+2017-08-02 16:29:31.323 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:31.353 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? 
+2017-08-02 16:29:31.353 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:31.382 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:31.383 |-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-08-02 16:29:31.384 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:31.412 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:31.413 |-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-08-02 16:29:31.414 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:31.441 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:31.472 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:31.473 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:31.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:29:31.476 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:31.536 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 4
+2017-08-02 16:29:31.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:29:31.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:31.603 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:29:31.604 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:31.605 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2267(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), 0(Integer), 2283(Long)
+2017-08-02 16:29:31.658 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:31.659 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:31.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2259(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), 0(Integer), 2699(Long)
+2017-08-02 16:29:31.711 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:31.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:31.713 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2278(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), -1(Integer), 0(Integer), 2283(Long)
+2017-08-02 16:29:31.769 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:31.770 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:29:31.771 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long), 2261(Long), 3(Integer), 113(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), -3(Integer), 0(Integer), 2699(Long)
+2017-08-02 16:29:31.822 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:29:31.823 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:31.824 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2267,2259,2278,2261,(String), 113(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:31.876 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:29:31.877 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:31.878 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:31.929 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:29:31.930 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:29:31.931 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:29:31.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:29:33.604 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:33.635 |-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-08-02 16:29:33.636 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:33.663 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:33.664 |-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-08-02 16:29:33.664 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:33.704 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:33.705 |-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-08-02 16:29:33.705 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:33.737 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:33.767 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:33.767 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:33.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:29:33.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 35(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:29:33.797 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:29:33.831 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:33.860 |-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-08-02 16:29:33.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100103001(String)
+2017-08-02 16:29:33.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:29:33.889 |-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-08-02 16:29:33.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:33.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:29:33.917 |-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-08-02 16:29:33.917 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2248(Integer)
+2017-08-02 16:29:33.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:29:33.972 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100103001, setting security context
+2017-08-02 16:29:33.973 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100103001
+2017-08-02 16:29:33.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:29:33.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 35(Long)
+2017-08-02 16:29:34.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 4
+2017-08-02 16:30:50.759 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:50.759 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:50.813 |-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-08-02 16:30:50.813 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:50.844 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:50.870 |-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-08-02 16:30:50.870 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:50.872 |-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-08-02 16:30:50.873 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:50.899 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:50.900 |-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-08-02 16:30:50.900 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:50.901 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:50.926 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:50.927 |-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-08-02 16:30:50.928 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:50.957 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:50.958 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:50.959 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:50.959 |-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-08-02 16:30:50.960 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:50.986 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:51.016 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:51.017 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.047 |-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-08-02 16:30:51.048 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2017-08-02 16:30:51.077 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 49
+2017-08-02 16:30:51.078 |-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-08-02 16:30:51.078 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.139 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.139 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.168 |-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-08-02 16:30:51.168 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.195 |-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-08-02 16:30:51.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.196 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:30:51.197 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.223 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.224 |-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-08-02 16:30:51.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.225 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.226 |-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-08-02 16:30:51.226 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.253 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:51.253 |-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-08-02 16:30:51.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.282 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:51.285 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:51.287 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.288 |-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-08-02 16:30:51.289 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2017-08-02 16:30:51.314 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:51.315 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.316 |-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-08-02 16:30:51.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2017-08-02 16:30:51.318 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 21
+2017-08-02 16:30:51.325 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.345 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2017-08-02 16:30:51.353 |-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-08-02 16:30:51.354 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.381 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.382 |-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-08-02 16:30:51.382 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.411 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.412 |-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-08-02 16:30:51.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.439 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:51.470 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:51.471 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.476 |-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-08-02 16:30:51.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2017-08-02 16:30:51.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 580
+2017-08-02 16:30:51.616 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.648 |-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-08-02 16:30:51.649 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.679 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.680 |-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-08-02 16:30:51.680 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.717 |-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-08-02 16:30:51.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.748 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:51.790 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:51.791 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.793 |-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-08-02 16:30:51.794 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2017-08-02 16:30:51.821 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 8
+2017-08-02 16:30:51.887 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.887 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.887 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.887 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:51.922 |-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-08-02 16:30:51.922 |-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-08-02 16:30:51.923 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.923 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.957 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.957 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:51.958 |-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-08-02 16:30:51.959 |-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-08-02 16:30:51.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.959 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.982 |-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-08-02 16:30:51.983 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.987 |-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-08-02 16:30:51.987 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:51.988 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.988 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:51.988 |-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-08-02 16:30:51.989 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:51.989 |-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-08-02 16:30:51.989 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:52.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:52.015 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:52.015 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:52.015 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:52.016 |-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-08-02 16:30:52.017 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:52.037 |-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-08-02 16:30:52.037 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:52.044 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:52.044 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:52.045 |-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-08-02 16:30:52.045 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:52.045 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:52.046 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:52.047 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:52.048 |-DEBUG [http-nio-8089-exec-4] 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-08-02 16:30:52.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 34(Long), 1(Long)
+2017-08-02 16:30:52.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:52.067 |-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-08-02 16:30:52.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:52.071 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:52.075 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2017-08-02 16:30:52.076 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2017-08-02 16:30:52.077 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 34(Long), 1(Long), 0(Integer), 50(Integer)
+2017-08-02 16:30:52.078 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2017-08-02 16:30:52.079 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 34(Integer)
+2017-08-02 16:30:52.094 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:52.098 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:52.099 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:52.101 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2017-08-02 16:30:52.102 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 34(Long), 2017-08-01 00:00:00.0(Timestamp), 2017-08-31 23:59:59.0(Timestamp), 1(Integer)
+2017-08-02 16:30:52.104 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 4
+2017-08-02 16:30:52.107 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2017-08-02 16:30:52.128 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:52.129 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:52.130 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2017-08-02 16:30:52.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2017-08-02 16:30:52.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2017-08-02 16:30:52.159 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2017-08-02 16:30:53.129 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:53.160 |-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-08-02 16:30:53.161 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:53.190 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:53.191 |-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-08-02 16:30:53.192 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:53.221 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:53.221 |-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-08-02 16:30:53.222 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:53.249 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:53.280 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:53.281 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:53.282 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:30:53.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:30:53.311 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:30:53.324 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:53.355 |-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-08-02 16:30:53.355 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:30:53.383 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:30:53.384 |-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-08-02 16:30:53.385 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:53.414 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:30:53.415 |-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-08-02 16:30:53.415 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:30:53.441 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:30:53.472 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:30:53.473 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:30:53.475 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:30:53.476 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:30:53.514 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 0
+2017-08-02 16:31:02.291 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:02.327 |-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-08-02 16:31:02.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:02.357 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:02.358 |-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-08-02 16:31:02.358 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:02.389 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:02.390 |-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-08-02 16:31:02.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:02.419 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:02.451 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:02.453 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:02.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:02.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:02.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 0
+2017-08-02 16:31:02.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:02.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:02.600 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:31:02.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:02.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2284(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), null, 2286(Long)
+2017-08-02 16:31:02.660 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:02.661 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:02.661 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2290(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), null, 2286(Long)
+2017-08-02 16:31:02.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:02.716 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:02.717 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2284,2290,(String), 54(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:02.790 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:31:02.791 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:02.792 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:02.846 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:02.847 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:02.847 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:02.901 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:04.198 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:04.239 |-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-08-02 16:31:04.240 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:04.268 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:04.269 |-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-08-02 16:31:04.269 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:04.298 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:04.299 |-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-08-02 16:31:04.299 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:04.326 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:04.366 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:04.367 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:04.369 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:31:04.369 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:31:04.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:31:04.419 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:04.467 |-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-08-02 16:31:04.467 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:04.495 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:04.496 |-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-08-02 16:31:04.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:04.524 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:04.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-08-02 16:31:04.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:04.553 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:04.603 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:04.604 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:04.605 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:31:04.606 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:04.659 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 2
+2017-08-02 16:31:08.989 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:09.025 |-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-08-02 16:31:09.025 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:09.053 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:09.054 |-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-08-02 16:31:09.054 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:09.085 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:09.086 |-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-08-02 16:31:09.086 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:09.114 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:09.145 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:09.146 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:09.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:09.149 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:09.211 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 2
+2017-08-02 16:31:09.212 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:09.212 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:09.283 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:31:09.283 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:09.284 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2284(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:09.336 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:09.337 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:09.338 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2290(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:09.390 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:09.391 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:09.392 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2284,2290,(String), 54(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:09.446 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:31:09.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:09.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:09.505 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:09.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:09.506 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:09.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:10.804 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:10.835 |-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-08-02 16:31:10.836 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:10.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:10.864 |-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-08-02 16:31:10.864 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:10.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:10.894 |-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-08-02 16:31:10.894 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:10.922 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:10.956 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:10.957 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:10.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:31:10.959 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:31:10.988 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:31:11.012 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:11.048 |-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-08-02 16:31:11.048 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:11.076 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:11.077 |-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-08-02 16:31:11.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:11.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:11.107 |-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-08-02 16:31:11.107 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:11.133 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:11.167 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:11.168 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:11.170 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:31:11.170 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:11.222 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 2
+2017-08-02 16:31:16.462 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:16.498 |-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-08-02 16:31:16.499 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:16.527 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:16.528 |-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-08-02 16:31:16.529 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:16.557 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:16.558 |-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-08-02 16:31:16.558 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:16.584 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:16.639 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:16.641 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:16.642 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:16.643 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:16.707 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 2
+2017-08-02 16:31:16.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:16.709 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:16.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:31:16.780 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:16.781 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2284(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:16.836 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:16.837 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:16.838 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2290(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:16.897 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:16.898 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:16.899 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2284,2290,(String), 54(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:16.952 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:31:16.953 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:16.954 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:17.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:17.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:17.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:17.065 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:18.358 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:18.388 |-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-08-02 16:31:18.389 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:18.416 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:18.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2017-08-02 16:31:18.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:18.446 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:18.447 |-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-08-02 16:31:18.447 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:18.474 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:18.505 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:18.506 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:18.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:31:18.509 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:31:18.537 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:31:18.559 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:18.588 |-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-08-02 16:31:18.589 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:18.616 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:18.617 |-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-08-02 16:31:18.617 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:18.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:18.646 |-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-08-02 16:31:18.646 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:18.679 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:18.713 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:18.714 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:18.717 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:31:18.717 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:18.770 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 2
+2017-08-02 16:31:23.538 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:23.582 |-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-08-02 16:31:23.582 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:23.609 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:23.610 |-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-08-02 16:31:23.611 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:23.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:23.640 |-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-08-02 16:31:23.640 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:23.667 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:23.697 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:23.698 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:23.699 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:31:23.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:31:23.728 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:31:23.749 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:23.780 |-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-08-02 16:31:23.780 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:23.808 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:23.808 |-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-08-02 16:31:23.809 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:23.838 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:23.838 |-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-08-02 16:31:23.839 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:23.865 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:23.897 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:23.898 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:23.899 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:31:23.900 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:23.952 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 2
+2017-08-02 16:31:28.986 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:29.016 |-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-08-02 16:31:29.017 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:29.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:29.046 |-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-08-02 16:31:29.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:29.075 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:29.076 |-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-08-02 16:31:29.076 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:29.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:29.135 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:29.136 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:29.137 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==>  Preparing: DELETE FROM sys_user_class WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:29.138 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:29.200 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.delete [159] -| <==    Updates: 2
+2017-08-02 16:31:29.200 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==>  Preparing: DELETE FROM sys_user_class_unregular WHERE work_date =? and dept_id=? 
+2017-08-02 16:31:29.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:29.271 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.deleteDetail [159] -| <==    Updates: 0
+2017-08-02 16:31:29.272 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:29.273 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2302(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 0(Integer), 0(Integer), 2290(Long)
+2017-08-02 16:31:29.327 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:29.328 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:29.332 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2284(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 1(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:29.384 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:29.385 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2017-08-02 16:31:29.386 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long), 2290(Long), 3(Integer), 54(Long), 2017-08-01 23:00:00.0(Timestamp), 2017-08-02 08:00:00.0(Timestamp), 3(Integer), 0(Integer), 2306(Long)
+2017-08-02 16:31:29.439 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2017-08-02 16:31:29.440 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:29.440 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: 2302,2284,2290,(String), 54(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:29.495 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 1
+2017-08-02 16:31:29.496 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:29.497 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:29.554 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:29.555 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==>  Preparing: UPDATE sys_team_class SET id=id ,user_ids = ? WHERE team_id = ? and work_date = ? 
+2017-08-02 16:31:29.555 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| ==> Parameters: (String), 0(Long), 2017-08-02 00:00:00.0(Timestamp)
+2017-08-02 16:31:29.612 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TeamClassDao.updateUserIds [159] -| <==    Updates: 0
+2017-08-02 16:31:30.887 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:30.919 |-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-08-02 16:31:30.919 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:30.948 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:30.949 |-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-08-02 16:31:30.949 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:30.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:30.979 |-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-08-02 16:31:30.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:31.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:31.037 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:31.038 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:31.039 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2017-08-02 16:31:31.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 34(Long), 2017-08-02 00:00:00.0(Timestamp), 2017-08-02 00:00:00.0(Timestamp), 1(Integer)
+2017-08-02 16:31:31.068 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 3
+2017-08-02 16:31:31.090 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:31.120 |-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-08-02 16:31:31.120 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1100102001(String)
+2017-08-02 16:31:31.148 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2017-08-02 16:31:31.149 |-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-08-02 16:31:31.150 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:31.179 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2017-08-02 16:31:31.179 |-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-08-02 16:31:31.180 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2284(Integer)
+2017-08-02 16:31:31.207 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2017-08-02 16:31:31.247 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 1100102001, setting security context
+2017-08-02 16:31:31.249 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 1100102001
+2017-08-02 16:31:31.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==>  Preparing: SELECT su.*,t.start_time AS start_time_u,t.end_time AS end_time_u,t.user_name , t.user_id AS user_id_u , t.id AS ids,t.monitor_user_id AS monitor_user_id_u FROM sys_user_class su LEFT JOIN sys_user_class_unregular t ON su.id = t.class_id WHERE su.work_date = ? AND su.dept_id=? order by t.start_time asc,class_type asc , lane asc 
+2017-08-02 16:31:31.251 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| ==> Parameters: 2017-08-02 00:00:00.0(Timestamp), 34(Long)
+2017-08-02 16:31:31.308 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.UserClassDao.selectList [159] -| <==      Total: 3