MSI\liwei 7 лет назад
Родитель
Сommit
d83e97f0e2

+ 30 - 0
VisualInspection_server/src/main/java/com/xintong/GetOffWork.java

@@ -0,0 +1,30 @@
+package com.xintong;
+
+import com.xintong.visualinspection.service.OffWorkService;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.scheduling.annotation.Scheduled;
+import org.springframework.stereotype.Component;
+
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Date;
+
+@Component
+public class GetOffWork {
+
+    @Autowired
+    private OffWorkService offWorkService;
+
+    private static final org.slf4j.Logger logger = LoggerFactory.getLogger(GetOffWork.class);
+
+   // @Scheduled(cron = "0/10 * * * * ?")
+    public void confirmTasks() {
+      // Date now = new Date();
+
+        logger.info("任务确认检测开始---------");
+        offWorkService.getOffWorkList();
+        logger.info("任务确认检测结束---------");
+    }
+
+}

+ 73 - 0
VisualInspection_server/src/main/java/com/xintong/system/druidTools/XiAnSuoDataSourceConfig.java

@@ -0,0 +1,73 @@
+package com.xintong.system.druidTools;
+
+import com.alibaba.druid.pool.DruidDataSource;
+import com.github.pagehelper.PageHelper;
+import org.apache.ibatis.plugin.Interceptor;
+import org.apache.ibatis.session.SqlSessionFactory;
+import org.mybatis.spring.SqlSessionFactoryBean;
+import org.mybatis.spring.annotation.MapperScan;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Qualifier;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.context.annotation.Primary;
+import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
+import org.springframework.jdbc.datasource.DataSourceTransactionManager;
+
+import javax.sql.DataSource;
+
+@Configuration
+// 扫描 Mapper 接口并容器管理
+@MapperScan(basePackages = XiAnSuoDataSourceConfig.PACKAGE, sqlSessionFactoryRef = "xiansuoSqlSessionFactory")
+public class XiAnSuoDataSourceConfig {
+
+    // 精确到 master 目录,以便跟其他数据源隔离
+    static final String PACKAGE = "com.xintong.visualinspection.dao.xiansuo";
+    //    static final String MAPPER_LOCATION = "classpath:mapper/master/*.xml";
+    @Value("${xiansuo.mapper-locations}")
+    private String  MAPPER_LOCATION;
+
+    @Value("${xiansuo.datasource.url}")
+    private String url;
+
+    @Value("${xiansuo.datasource.username}")
+    private String user;
+
+    @Value("${xiansuo.datasource.password}")
+    private String password;
+
+    @Value("${xiansuo.datasource.driver-class-name}")
+    private String driverClass;
+
+    @Autowired
+    private PageHelper pageHelper;
+
+    @Bean(name = "xiansuoDataSource")
+    public DataSource xiansuoDataSource() {
+        DruidDataSource dataSource = new DruidDataSource();
+        dataSource.setDriverClassName(driverClass);
+        dataSource.setUrl(url);
+        dataSource.setUsername(user);
+        dataSource.setPassword(password);
+        return dataSource;
+    }
+
+    @Bean(name = "xiansuoTransactionManager")
+    public DataSourceTransactionManager xiansuoTransactionManager() {
+        return new DataSourceTransactionManager(xiansuoDataSource());
+    }
+
+    @Bean(name = "xiansuoSqlSessionFactory")
+    public SqlSessionFactory xiansuoSqlSessionFactory(@Qualifier("xiansuoDataSource") DataSource xiansuoDataSource)
+            throws Exception {
+        final SqlSessionFactoryBean sessionFactory = new SqlSessionFactoryBean();
+        sessionFactory.setDataSource(xiansuoDataSource);
+        Interceptor[] plugins =  new Interceptor[]{pageHelper};
+        sessionFactory.setPlugins(plugins);
+        sessionFactory.setMapperLocations(new PathMatchingResourcePatternResolver()
+                .getResources(MAPPER_LOCATION));
+        return sessionFactory.getObject();
+    }
+
+}

+ 22 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/bean/OffWorkList.java

@@ -0,0 +1,22 @@
+package com.xintong.visualinspection.bean;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.util.Date;
+
+@Data
+public class OffWorkList {
+
+    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
+    @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
+    private Date ontime;
+
+    private String laneID;
+
+    private String operator;
+
+    private Integer recordtype;
+
+}

+ 2 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/dao/master/TeamClassDao.java

@@ -28,6 +28,8 @@ public interface TeamClassDao  {
     public List<TeamClass> getClassListForChargeUnRegular(TeamClass teamClass);
     
     public List<com.xintong.visualinspection.pojo.TeamClass> getLaneClassListByUserAndTime(com.xintong.visualinspection.pojo.TeamClass teamClass);
+
+    public TeamClass getTeamClassByWorkdate(TeamClass teamClass);
     
    
 }

+ 2 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/dao/master/UserClassDao.java

@@ -37,4 +37,6 @@ public interface UserClassDao  {
     public List<UserClass> getUsersClassByDeptAndWorkDay(UserClass userClass);
 
     public List<UnregularUserClass> getUnregularUsersClassByDeptAndWorkDay(UserClass userClass);
+
+    public List<UserClass> getUsersClassByMore(UnregularUserClass userClass);
 }

+ 18 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/dao/xiansuo/CallDao.java

@@ -0,0 +1,18 @@
+package com.xintong.visualinspection.dao.xiansuo;
+
+import com.xintong.visualinspection.bean.OffWorkList;
+import com.xintong.visualinspection.bean.Organ;
+import org.apache.ibatis.annotations.Mapper;
+
+import java.util.HashMap;
+import java.util.List;
+
+@Mapper
+
+public interface CallDao {
+
+    public List<OffWorkList> getCallList(Organ org);
+
+    public List<OffWorkList> getOffWork();
+
+}

+ 7 - 1
VisualInspection_server/src/main/java/com/xintong/visualinspection/mapper/master/TeamClassMapper.xml

@@ -138,5 +138,11 @@
         <if test="end_time != null">AND t.work_date &lt;= #{end_time}</if>
         ORDER BY t.work_date ASC ,t.class_type ASC
     </select>
-    
+
+    <select id="getTeamClassByWorkdate" parameterType="com.xintong.visualinspection.pojo.TeamClass" resultMap="TeamClassResultMap">
+           SELECT * FROM sys_team_class where 1=1
+        <if test="dept_id != null">AND dept_id = #{dept_id}</if>
+        <if test="work_date != null">AND work_date &gt;= #{work_date}</if>
+        <if test="class_type != null">AND class_type &gt;= #{class_type}</if>
+    </select>
 </mapper>

+ 12 - 1
VisualInspection_server/src/main/java/com/xintong/visualinspection/mapper/master/UserClassMapper.xml

@@ -144,6 +144,8 @@
         sys_user_class
         WHERE
         work_date =#{work_date} and dept_id=#{dept_id}
+        <if test="class_type != null">and class_type = #{class_type}</if>
+        <if test="lane != null">and lane = #{lane}</if>
     </select>
 
     <select id="getUnregularUsersClassByDeptAndWorkDay" parameterType="com.xintong.visualinspection.bean.UserClass"
@@ -184,4 +186,13 @@
 		        	where id = #{user_class_id}
 	        	)
     </select>
-</mapper>
+
+    <select id="getUsersClassByMore" parameterType="com.xintong.visualinspection.bean.UserClass"
+            resultMap="userClassMap">
+        SELECT * FROM
+        sys_user_class_unregular
+        WHERE
+         user_id = #{user_id} and start_time &lt; #{start_time} &lt; end_time
+    </select>
+</mapper>
+

+ 20 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/mapper/xiansuo/CallMapper.xml

@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.xintong.visualinspection.dao.xiansuo.CallDao" >
+
+    <resultMap id="OffWorkList" type="com.xintong.visualinspection.bean.OffWorkList">
+        <result property="ontime" column="ontime"/>
+        <result property="laneID" column="laneID"/>
+        <result property="operator" column="operator"/>
+        <result property="recordtype" column="recordtype"/>
+    </resultMap>
+
+   <select id="getCallList"  parameterType="com.xintong.visualinspection.bean.Organ">
+   		call SP_OUTTER_OFFWORKLIST (#{remark},#{deptype});
+   </select>
+
+    <select id="getOffWork"  resultMap="OffWorkList" >
+   		SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR
+   </select>
+    
+</mapper>

+ 6 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/service/OffWorkService.java

@@ -0,0 +1,6 @@
+package com.xintong.visualinspection.service;
+
+public interface OffWorkService {
+
+    public void getOffWorkList();
+}

+ 198 - 0
VisualInspection_server/src/main/java/com/xintong/visualinspection/service/impl/OffWorkServiceImpl.java

@@ -0,0 +1,198 @@
+package com.xintong.visualinspection.service.impl;
+
+import com.xintong.visualinspection.bean.*;
+import com.xintong.visualinspection.dao.cluster.UserInfoDao;
+import com.xintong.visualinspection.dao.master.TeamClassDao;
+import com.xintong.visualinspection.dao.master.TeamDao;
+import com.xintong.visualinspection.dao.master.UserClassDao;
+import com.xintong.visualinspection.dao.xiansuo.CallDao;
+import com.xintong.visualinspection.service.BaseService;
+import com.xintong.visualinspection.service.DepartmentService;
+import com.xintong.visualinspection.service.OffWorkService;
+import com.xintong.visualinspection.util.CacheUtil;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.text.SimpleDateFormat;
+import java.util.Calendar;
+import java.util.Date;
+import java.util.List;
+
+@Service
+public class OffWorkServiceImpl extends BaseService implements OffWorkService {
+
+    @Autowired
+    private CallDao callDao;
+
+    @Autowired
+    private UserInfoDao userDao;
+
+    @Autowired
+    private UserClassDao classDao;
+
+    @Autowired
+    private DepartmentService deptService;
+
+    @Autowired
+    private TeamDao teamDao;
+
+    @Autowired
+    private TeamClassDao teamClassDao;
+
+
+    public void getOffWorkList(){
+        Calendar cal = Calendar.getInstance();
+        cal.add(Calendar.DAY_OF_MONTH, -1);
+        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd");
+        String date = sdf.format(cal.getTime());
+        System.err.println(date);
+        List<Organ> deptList = deptService.getAll();
+        for(Organ org : deptList){
+            if(org.getParentid() == 32){
+
+                List<Team> teamList = teamDao.getByDeptId((long)org.getId());
+                insertTeamClass((long)org.getId(),cal.getTime());
+             org.setRemark(date);
+                try{
+                    List<OffWorkList> nlist = callDao.getCallList(org);
+                    List<OffWorkList> list = callDao.getOffWork();
+                    UnregularUserClass uc = new UnregularUserClass();
+                    for(int i =0;i<list.size();i++){
+                        if(list.get(i).getRecordtype() == 64){
+                            User user =  userDao.findByUserName(list.get(i).getOperator());
+                            uc.setUser_id((long)user.getId());
+                            uc.setTeam_id(teamList.get(0).getId());
+                            uc.setMonitor_user_id((long)teamList.get(0).getMonitor());
+                            uc.setDept_id((long)org.getId());
+                            uc.setUser_name(user.getTruename());
+                            uc.setStart_time(list.get(i).getOntime());
+                            uc.setWork_date(cal.getTime());
+                            if(Integer.valueOf(list.get(i).getLaneID()) > 100){
+                                uc.setLane(0-(Integer.valueOf(list.get(i).getLaneID())-100));
+                            }
+                        }
+                        for(int j = i;j<list.size();j++){
+                            if(list.get(j).getRecordtype() == 128){
+                                uc.setEnd_time(list.get(j).getOntime());
+                                uc.setClass_type(getClassType(uc.getStart_time(),uc.getEnd_time()));
+//                                TeamClass teamClass = new TeamClass();
+//                                teamClass.setClass_type(uc.getClass_type());
+//                                teamClass.setWork_date(uc.getWork_date());
+//                                teamClass.setDept_id(uc.getDept_id());
+                                 UserClass cObj = new UserClass();
+                                 cObj.setClass_type(uc.getClass_type());
+                                SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
+                                 cObj.setWork_date( simpleDateFormat.parse(simpleDateFormat.format(uc.getWork_date())));
+                                 cObj.setDept_id(uc.getDept_id());
+                                 cObj.setLane(uc.getLane());
+                                uc.setClass_id(classDao.getUsersClassByDeptAndWorkDay(cObj).get(0).getId());
+                                if(classDao.getUsersClassByMore(uc).size() == 0){
+                                    classDao.insert_detail2(uc);
+                                }
+
+                                break;
+                            }
+                        }
+                    }
+                }
+                catch (Exception e ){
+                         e.printStackTrace();
+                }
+            }
+        }
+
+
+
+        System.err.println("测试");
+    }
+
+
+    public Integer getClassType(Date start_date,Date end_date){
+        Calendar calendar = Calendar.getInstance();
+        calendar.setTime(start_date);
+        int start = calendar.get(Calendar.HOUR_OF_DAY);
+        calendar.setTime(end_date);
+        int end = calendar.get(Calendar.HOUR_OF_DAY);
+        if(start<8 && end>8){
+            return  1;
+        }else if(start > 8 && 8 < end  &&  end  <16){
+            return  1;
+        }else if(start <16 && end > 16 ){
+           return  2;
+        }else if(start >16 && end <23 && end >16){
+            return  2;
+        }else{
+            return  3;
+        }
+    }
+
+    public void insertTeamClass(Long deptid,Date work_date){
+        Calendar calendar = Calendar.getInstance();
+        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
+       try{
+           work_date = simpleDateFormat.parse(simpleDateFormat.format(work_date));
+       }catch (Exception e ){
+
+       }
+        calendar.setTime(work_date);
+
+       List<Team> teamList = teamDao.getByDeptId(deptid);
+       try {
+           Team team = teamList.get(0);
+           TeamClass teamClass = new TeamClass();
+           teamClass.setUser_ids(team.getUser_ids());
+           teamClass.setDept_id(deptid);
+           teamClass.setWork_date(work_date);
+           teamClass.setTeam_id(team.getId());
+           teamClass.setClass_type(3);
+           calendar.add(Calendar.HOUR_OF_DAY,-1);
+           teamClass.setStart_time(calendar.getTime());
+           calendar.add(Calendar.HOUR_OF_DAY,9);
+           teamClass.setEnd_time(calendar.getTime());
+           teamClassDao.insert(teamClass);
+           insertUserClass(teamClass);
+           teamClass.setClass_type(1);
+           teamClass.setStart_time(calendar.getTime());
+           calendar.add(Calendar.HOUR_OF_DAY,7);
+           teamClass.setEnd_time(calendar.getTime());
+           teamClassDao.insert(teamClass);
+           insertUserClass(teamClass);
+           teamClass.setClass_type(2);
+           teamClass.setStart_time(calendar.getTime());
+           calendar.add(Calendar.HOUR_OF_DAY,8);
+           teamClass.setEnd_time(calendar.getTime());
+           teamClassDao.insert(teamClass);
+           insertUserClass(teamClass);
+       }catch (Exception e){
+
+       }
+
+    }
+
+    public void  insertUserClass(TeamClass teamClass){
+        try {
+            UserClass user = new UserClass();
+            user.setStart_time(teamClass.getStart_time());
+            user.setEnd_time(teamClass.getEnd_time());
+            user.setDept_id(teamClass.getDept_id());
+            user.setWork_date(teamClass.getWork_date());
+            user.setClass_type(teamClass.getClass_type());
+            user.setUser_id((long)3232);
+            user.setTeam_id(teamClass.getTeam_id());
+            long dept = teamClass.getDept_id();
+            FeeStation feeStation = deptService.getFSByDeptId((int)dept);
+            for(int i=1;i<feeStation.getEntrance_numer()+1;i++){
+                user.setLane(i);
+                classDao.insert(user);
+            }
+            for(int i=-1;i>0-feeStation.getExit_numer()-1;i--){
+                user.setLane(i);
+                classDao.insert(user);
+            }
+        }catch (Exception e){
+
+        }
+
+    }
+
+}

+ 4263 - 9131
VisualInspection_server/visual/visual.log

@@ -1,9131 +1,4263 @@
-2019-01-25 09:38:41.767 |-INFO  [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on MSI with PID 19768 (D:\Visuallnspection_njy\VisualInspection_server\target\classes started by liwei in D:\Visuallnspection_njy\VisualInspection_server)
-2019-01-25 09:38:41.774 |-INFO  [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
-2019-01-25 09:38:42.039 |-INFO  [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
-2019-01-25 09:38:42.062 |-INFO  [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@457ed194: startup date [Fri Jan 25 09:38:42 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 09:38:45.280 |-INFO  [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
-2019-01-25 09:38:46.241 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2d79a0e6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.394 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$c6276920] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.408 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.412 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@56a725d5' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.423 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$eafc0bd2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.446 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.467 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$18bd14e2] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.589 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:46.591 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$768bd704] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:38:47.318 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
-2019-01-25 09:38:47.332 |-INFO  [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
-2019-01-25 09:38:47.334 |-INFO  [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
-2019-01-25 09:38:47.486 |-INFO  [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
-2019-01-25 09:38:47.486 |-INFO  [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 5424 ms
-2019-01-25 09:38:47.927 |-INFO  [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
-2019-01-25 09:38:50.817 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
-2019-01-25 09:38:50.817 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
-2019-01-25 09:38:50.817 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
-2019-01-25 09:38:50.818 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
-2019-01-25 09:38:50.818 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
-2019-01-25 09:38:50.819 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
-2019-01-25 09:38:50.819 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
-2019-01-25 09:38:50.819 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
-2019-01-25 09:38:50.819 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
-2019-01-25 09:38:50.819 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
-2019-01-25 09:38:50.820 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
-2019-01-25 09:38:50.820 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
-2019-01-25 09:38:50.820 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
-2019-01-25 09:38:50.822 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
-2019-01-25 09:38:52.370 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 
-2019-01-25 09:38:52.395 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService  'threadExecutor'
-2019-01-25 09:38:52.912 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
-2019-01-25 09:38:52.913 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
-2019-01-25 09:38:53.168 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@44468ff7, org.springframework.security.web.context.SecurityContextPersistenceFilter@6a03e94c, org.springframework.security.web.header.HeaderWriterFilter@2b8d9670, org.springframework.web.filter.CorsFilter@4745d27a, org.springframework.security.web.authentication.logout.LogoutFilter@9472452, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@673d314b, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@45e273ac, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@d13c396, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@a412756, org.springframework.security.web.session.SessionManagementFilter@772f5dfc, org.springframework.security.web.access.ExceptionTranslationFilter@16299bd, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3084624c]
-2019-01-25 09:38:53.212 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@5024165e, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@16f6b6ab, org.springframework.security.web.context.SecurityContextPersistenceFilter@60623fc4, org.springframework.security.web.header.HeaderWriterFilter@45ee2a6c, org.springframework.security.web.authentication.logout.LogoutFilter@328a88cd, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@62a5c626, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@38411b6d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@cc8fb43, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@48cd6117, org.springframework.security.web.session.SessionManagementFilter@6d2b3865, org.springframework.security.web.access.ExceptionTranslationFilter@7be473e6, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@61d2e583]
-2019-01-25 09:38:53.396 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@457ed194: startup date [Fri Jan 25 09:38:42 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 09:38:53.582 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.583 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.584 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:38:53.585 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:38:53.585 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:38:53.586 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.586 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:38:53.587 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:38:53.587 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.593 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.594 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.594 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.594 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.595 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.595 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.595 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.596 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.596 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
-2019-01-25 09:38:53.596 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:38:53.598 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.598 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.599 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.599 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
-2019-01-25 09:38:53.600 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.600 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.601 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.601 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.602 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.603 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.604 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.610 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.610 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.611 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.611 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.613 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.613 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.614 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.614 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.615 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.615 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.616 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.616 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:38:53.617 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
-2019-01-25 09:38:53.617 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.617 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:38:53.618 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.619 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.619 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.620 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.620 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.620 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.620 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:38:53.622 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
-2019-01-25 09:38:53.623 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
-2019-01-25 09:38:53.624 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
-2019-01-25 09:38:53.624 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.625 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
-2019-01-25 09:38:53.625 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
-2019-01-25 09:38:53.626 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
-2019-01-25 09:38:53.626 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
-2019-01-25 09:38:53.627 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.627 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
-2019-01-25 09:38:53.627 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
-2019-01-25 09:38:53.628 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
-2019-01-25 09:38:53.629 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
-2019-01-25 09:38:53.630 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.630 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
-2019-01-25 09:38:53.632 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.632 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 09:38:53.632 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.633 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.633 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:38:53.633 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:38:53.634 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:38:53.634 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:38:53.634 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 09:38:53.635 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
-2019-01-25 09:38:53.637 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
-2019-01-25 09:38:53.638 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
-2019-01-25 09:38:53.638 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer)
-2019-01-25 09:38:53.639 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.640 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.640 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
-2019-01-25 09:38:53.642 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
-2019-01-25 09:38:53.643 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:38:53.644 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:38:53.644 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
-2019-01-25 09:38:53.644 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:38:53.645 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
-2019-01-25 09:38:53.645 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
-2019-01-25 09:38:53.646 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
-2019-01-25 09:38:53.648 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
-2019-01-25 09:38:53.649 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
-2019-01-25 09:38:53.649 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
-2019-01-25 09:38:53.649 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
-2019-01-25 09:38:53.650 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
-2019-01-25 09:38:53.650 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.650 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
-2019-01-25 09:38:53.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
-2019-01-25 09:38:53.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
-2019-01-25 09:38:53.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
-2019-01-25 09:38:53.653 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.653 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.653 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.654 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.654 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.654 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.655 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
-2019-01-25 09:38:53.655 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:38:53.660 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.661 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.661 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:38:53.662 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.662 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
-2019-01-25 09:38:53.662 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:38:53.663 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.663 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.663 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.664 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.664 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.664 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.665 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.665 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.665 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.666 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.666 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.666 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
-2019-01-25 09:38:53.666 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:38:53.666 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.667 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.667 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.667 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.668 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
-2019-01-25 09:38:53.668 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
-2019-01-25 09:38:53.668 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
-2019-01-25 09:38:53.668 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:38:53.668 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:38:53.670 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.670 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.670 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.671 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.671 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.671 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.671 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
-2019-01-25 09:38:53.671 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.672 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.672 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.673 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.673 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.674 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.674 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.676 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.676 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.676 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:38:53.678 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:38:53.678 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:38:53.678 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.679 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:38:53.679 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.679 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.679 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
-2019-01-25 09:38:53.680 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.680 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:38:53.680 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
-2019-01-25 09:38:53.681 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:38:53.681 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:38:53.681 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:38:53.681 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
-2019-01-25 09:38:53.682 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:38:53.682 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.682 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.682 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:38:53.683 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
-2019-01-25 09:38:53.683 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.683 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
-2019-01-25 09:38:53.683 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
-2019-01-25 09:38:53.683 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
-2019-01-25 09:38:53.684 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
-2019-01-25 09:38:53.684 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
-2019-01-25 09:38:53.684 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
-2019-01-25 09:38:53.685 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
-2019-01-25 09:38:53.685 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 09:38:53.685 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 09:38:53.686 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
-2019-01-25 09:38:53.688 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.689 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
-2019-01-25 09:38:53.690 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
-2019-01-25 09:38:53.690 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
-2019-01-25 09:38:53.690 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:38:53.691 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
-2019-01-25 09:38:53.691 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 09:38:53.691 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
-2019-01-25 09:38:53.691 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 09:38:53.692 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
-2019-01-25 09:38:53.692 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
-2019-01-25 09:38:53.692 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
-2019-01-25 09:38:53.695 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
-2019-01-25 09:38:53.696 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
-2019-01-25 09:38:53.696 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
-2019-01-25 09:38:53.784 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
-2019-01-25 09:38:53.868 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:38:53.868 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:38:53.919 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
-2019-01-25 09:38:53.921 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
-2019-01-25 09:38:53.921 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
-2019-01-25 09:38:53.921 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
-2019-01-25 09:38:53.921 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
-2019-01-25 09:38:53.921 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
-2019-01-25 09:38:53.922 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
-2019-01-25 09:38:53.922 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
-2019-01-25 09:38:53.923 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
-2019-01-25 09:38:53.924 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
-2019-01-25 09:38:53.924 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
-2019-01-25 09:38:53.925 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
-2019-01-25 09:38:53.925 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
-2019-01-25 09:38:53.926 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
-2019-01-25 09:38:53.926 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
-2019-01-25 09:38:53.927 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
-2019-01-25 09:38:53.927 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
-2019-01-25 09:38:53.929 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
-2019-01-25 09:38:53.929 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
-2019-01-25 09:38:53.930 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
-2019-01-25 09:38:53.930 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
-2019-01-25 09:38:53.931 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
-2019-01-25 09:38:53.931 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
-2019-01-25 09:38:53.931 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
-2019-01-25 09:38:53.997 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:38:54.844 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 09:38:54.845 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 09:38:54.847 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 09:38:55.825 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 09:38:55.830 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 09:38:55.846 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 09:38:55.848 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 09:38:55.849 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 09:38:55.849 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 09:38:55.851 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:38:55.852 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:38:55.855 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
-2019-01-25 09:38:55.856 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
-2019-01-25 09:38:55.856 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
-2019-01-25 09:38:55.856 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
-2019-01-25 09:38:55.856 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
-2019-01-25 09:38:55.857 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
-2019-01-25 09:38:55.857 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
-2019-01-25 09:38:55.869 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 09:38:55.870 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:38:55.870 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:38:55.870 |-INFO  [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
-2019-01-25 09:38:55.883 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 09:38:55.884 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 09:38:55.885 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 09:38:55.892 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 09:38:55.952 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
-2019-01-25 09:38:56.888 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
-2019-01-25 09:38:56.932 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
-2019-01-25 09:38:56.958 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
-2019-01-25 09:38:56.958 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 09:38:56.959 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 09:38:56.959 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 09:38:56.960 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 09:38:57.532 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
-2019-01-25 09:38:57.532 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.533 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.533 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.534 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
-2019-01-25 09:38:57.534 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.534 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.535 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.536 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
-2019-01-25 09:38:57.536 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
-2019-01-25 09:38:57.538 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
-2019-01-25 09:38:57.538 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
-2019-01-25 09:38:57.539 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.539 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
-2019-01-25 09:38:57.539 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.540 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:57.540 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:38:58.240 |-INFO  [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
-2019-01-25 09:38:58.251 |-WARN  [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
-2019-01-25 09:38:58.500 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 09:38:58.501 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
-2019-01-25 09:38:58.501 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
-2019-01-25 09:38:58.511 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
-2019-01-25 09:38:58.513 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
-2019-01-25 09:38:58.513 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 09:38:58.518 |-INFO  [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
-2019-01-25 09:38:58.521 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
-2019-01-25 09:38:58.541 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
-2019-01-25 09:38:58.553 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
-2019-01-25 09:38:58.557 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
-2019-01-25 09:38:58.559 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
-2019-01-25 09:38:58.561 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
-2019-01-25 09:38:58.564 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
-2019-01-25 09:38:58.569 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
-2019-01-25 09:38:58.572 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
-2019-01-25 09:38:58.574 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
-2019-01-25 09:38:58.576 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
-2019-01-25 09:38:58.577 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
-2019-01-25 09:38:58.641 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
-2019-01-25 09:38:58.876 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==>  Preparing: SELECT * FROM sys_code WHERE valid!=0 
-2019-01-25 09:38:58.893 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:38:58.926 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <==      Total: 70
-2019-01-25 09:38:58.928 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
-2019-01-25 09:38:58.932 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
-2019-01-25 09:38:58.977 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==>  Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a 
-2019-01-25 09:38:58.977 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:38:58.994 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <==      Total: 26
-2019-01-25 09:38:58.995 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:26
-2019-01-25 09:38:58.996 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==>  Preparing: SELECT * FROM t_sys_organ 
-2019-01-25 09:38:58.996 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:38:59.002 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <==      Total: 7
-2019-01-25 09:38:59.002 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:7
-2019-01-25 09:38:59.031 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:38:59.032 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:38:59.045 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:38:59.046 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:26
-2019-01-25 09:38:59.071 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
-2019-01-25 09:38:59.087 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
-2019-01-25 09:38:59.100 |-INFO  [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
-2019-01-25 09:38:59.155 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
-2019-01-25 09:38:59.162 |-INFO  [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 17.704 seconds (JVM running for 21.053)
-2019-01-25 09:45:05.333 |-INFO  [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
-2019-01-25 09:45:05.334 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
-2019-01-25 09:45:05.377 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 43 ms
-2019-01-25 09:45:05.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:05.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:05.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:05.548 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:05.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:05.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:05.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:05.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:05.571 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:05.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:05.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:05.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:05.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:05.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:05.602 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:05.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:05.605 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:05.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.314 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.314 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.314 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.314 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.314 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.342 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.342 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.351 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.353 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.353 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.354 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.360 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.361 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.362 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.364 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.372 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.374 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.374 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.375 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.375 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.384 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.384 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.384 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.385 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.386 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.392 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.392 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.393 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.393 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.398 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.400 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.402 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.402 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.406 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.408 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.409 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.410 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.415 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.416 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 09:45:06.416 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 09:45:06.417 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.417 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.418 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.422 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.423 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.426 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 09:45:06.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.435 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 09:45:06.436 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.437 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 09:45:06.440 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.445 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 09:45:06.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 09:45:06.464 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 09:45:06.472 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 09:45:06.472 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:45:06.472 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:45:06.478 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:45:06.500 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.500 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.500 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.508 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.509 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.514 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.515 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.515 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.518 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.520 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.526 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.527 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.527 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.529 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.530 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.538 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.779 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.780 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.790 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.800 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.802 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.802 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.804 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.804 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.806 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.820 |-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 
-2019-01-25 09:45:06.821 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 09:45:06.823 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:45:06.823 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 09:45:06.823 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:45:06.824 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 09:45:06.829 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 09:45:06.833 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 09:45:06.845 |-INFO  [http-nio-8089-exec-7] org.springframework.beans.factory.xml.XmlBeanDefinitionReader [317] -| Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
-2019-01-25 09:45:06.849 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.879 |-INFO  [http-nio-8089-exec-7] org.springframework.jdbc.support.SQLErrorCodesFactory [127] -| SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase, Hana]
-2019-01-25 09:45:06.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.886 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.887 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 09:45:06.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 09:45:06.922 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 09:45:06.931 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.935 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:06.935 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:06.940 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:06.941 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:06.941 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.951 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:06.952 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:06.952 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:06.958 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:06.965 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:06.966 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:06.971 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:45:06.972 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:45:06.978 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:45:07.002 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
-org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
-	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
-	at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
-	at com.sun.proxy.$Proxy95.selectList(Unknown Source)
-	at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
-	at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
-	at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
-	at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
-	at com.sun.proxy.$Proxy112.getAllWG(Unknown Source)
-	at com.xintong.visualinspection.service.impl.DepartmentServiceImpl.getAllWG(DepartmentServiceImpl.java:157)
-	at com.xintong.visualinspection.controller.DepartmentController.getAllWG(DepartmentController.java:167)
-	at com.xintong.visualinspection.controller.DepartmentController$$FastClassBySpringCGLIB$$13d08010.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.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.DepartmentController$$EnhancerBySpringCGLIB$$4d5f0bb.getAllWG(<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:498)
-	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.doGet(FrameworkServlet.java:861)
-	at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
-	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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
-	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
-	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
-	at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
-	at com.mysql.jdbc.Util.getInstance(Util.java:408)
-	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
-	at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
-	at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
-	at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
-	at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
-	at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
-	at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
-	at sun.reflect.GeneratedMethodAccessor139.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
-	at com.sun.proxy.$Proxy141.execute(Unknown Source)
-	at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
-	at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
-	at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
-	at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
-	at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
-	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
-	at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
-	at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
-	at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
-	at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
-	at com.sun.proxy.$Proxy139.query(Unknown Source)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
-	at sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
-	... 131 common frames omitted
-2019-01-25 09:45:07.005 |-WARN  [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-2019-01-25 09:45:07.116 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:07.121 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:45:07.123 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:45:07.131 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:45:07.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:45:07.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:07.143 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:45:07.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:45:07.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:45:07.150 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:45:07.156 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:45:07.158 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:45:07.241 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 09:45:07.242 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 09:45:07.248 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 09:45:07.249 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 09:45:07.250 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 09:45:07.260 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 09:46:14.741 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:46:14.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:46:14.750 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:46:14.757 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:46:14.763 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:46:14.763 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:46:14.770 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:46:14.772 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:46:14.773 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:46:14.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:46:14.785 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:46:14.786 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:46:14.806 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, 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 = ?) table_count 
-2019-01-25 09:46:14.807 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 7(Integer)
-2019-01-25 09:46:14.825 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
-2019-01-25 09:46:15.424 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:46:15.429 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:46:15.429 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:46:15.435 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:46:15.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:46:15.436 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:46:15.446 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:46:15.446 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:46:15.447 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:46:15.453 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:46:15.459 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:46:15.461 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:46:15.475 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 09:46:15.476 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 09:46:15.482 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 09:46:15.483 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 09:46:15.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 09:46:15.498 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 09:51:50.992 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:50.992 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:50.992 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:51.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:51.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:51.027 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:51.034 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:51.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:51.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:51.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:51.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:51.055 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:51.064 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:51.065 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:51.067 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:51:51.067 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:51:51.078 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:51:53.002 |-ERROR [http-nio-8089-exec-9] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 09:51:53.002 |-ERROR [http-nio-8089-exec-8] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 09:51:53.219 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:53.228 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:53.228 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:53.241 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:53.242 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:53.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:53.256 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:53.257 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:53.258 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:53.267 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:53.276 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:53.278 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:53.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_role s LEFT JOIN (SELECT sys_role_id, count(sys_role_id) AS count FROM sys_role_user GROUP BY sys_role_id) p ON p.sys_role_id = s.id WHERE 1 = 1 
-2019-01-25 09:51:53.287 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| ==> Parameters: 
-2019-01-25 09:51:53.294 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| <==      Total: 1
-2019-01-25 09:51:53.295 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| ==>  Preparing: select s.*,p.count from sys_role s LEFT JOIN (select sys_role_id,count(sys_role_id) as count from sys_role_user GROUP BY sys_role_id) p on p.sys_role_id = s.id where 1=1 limit ?,? 
-2019-01-25 09:51:53.296 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| ==> Parameters: 0(Integer), 10(Integer)
-2019-01-25 09:51:53.303 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| <==      Total: 10
-2019-01-25 09:51:55.254 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.256 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.258 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.262 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.275 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.279 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.280 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.281 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.281 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.281 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.283 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.285 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.291 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.291 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.292 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.293 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.294 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.294 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.301 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.301 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.302 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.302 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.313 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.314 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.315 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.315 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.316 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.316 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.316 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.317 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.317 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.323 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.324 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.325 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.325 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.326 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.326 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.329 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.330 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.339 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.339 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.339 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:51:55.340 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:51:55.343 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 09:51:55.344 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 09:51:55.345 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.345 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.346 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.347 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.350 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.351 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.355 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 09:51:55.356 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:51:55.357 |-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 
-2019-01-25 09:51:55.358 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 09:51:55.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 09:51:55.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 09:51:55.370 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 09:51:55.371 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.372 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 09:51:55.382 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.435 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.436 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.436 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.439 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.440 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.445 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.445 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.446 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.456 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.456 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.457 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.457 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.457 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.457 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.462 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.463 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.463 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.470 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.470 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.476 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.476 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.478 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.479 |-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 
-2019-01-25 09:51:55.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 09:51:55.481 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.482 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.483 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.483 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.484 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:51:55.484 |-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 
-2019-01-25 09:51:55.485 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 09:51:55.485 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 09:51:55.486 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 09:51:55.498 |-ERROR [http-nio-8089-exec-7] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
-org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
-	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
-	at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
-	at com.sun.proxy.$Proxy95.selectList(Unknown Source)
-	at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
-	at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
-	at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
-	at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
-	at com.sun.proxy.$Proxy112.getAllWG(Unknown Source)
-	at com.xintong.visualinspection.service.impl.DepartmentServiceImpl.getAllWG(DepartmentServiceImpl.java:157)
-	at com.xintong.visualinspection.controller.DepartmentController.getAllWG(DepartmentController.java:167)
-	at com.xintong.visualinspection.controller.DepartmentController$$FastClassBySpringCGLIB$$13d08010.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.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.DepartmentController$$EnhancerBySpringCGLIB$$4d5f0bb.getAllWG(<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:498)
-	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.doGet(FrameworkServlet.java:861)
-	at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
-	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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
-	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
-	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
-	at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
-	at com.mysql.jdbc.Util.getInstance(Util.java:408)
-	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
-	at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
-	at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
-	at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
-	at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
-	at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
-	at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
-	at sun.reflect.GeneratedMethodAccessor139.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
-	at com.sun.proxy.$Proxy141.execute(Unknown Source)
-	at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
-	at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
-	at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
-	at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
-	at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
-	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
-	at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
-	at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
-	at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
-	at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
-	at com.sun.proxy.$Proxy139.query(Unknown Source)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
-	at sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
-	... 131 common frames omitted
-2019-01-25 09:51:55.500 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 09:51:55.501 |-WARN  [http-nio-8089-exec-7] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-2019-01-25 09:51:55.509 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.514 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.515 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.531 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.532 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.543 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.544 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.544 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.550 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.554 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.556 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.560 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 09:51:55.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 09:51:55.573 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 09:51:55.583 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.589 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.589 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.601 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.602 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.612 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.613 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.614 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.621 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.625 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.626 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.629 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:51:55.629 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:51:55.635 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:51:55.654 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.659 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:55.660 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:55.670 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:55.671 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:55.672 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.684 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:55.685 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:55.686 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:55.693 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:55.699 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:55.702 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:55.711 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_role s LEFT JOIN (SELECT sys_role_id, count(sys_role_id) AS count FROM sys_role_user GROUP BY sys_role_id) p ON p.sys_role_id = s.id WHERE 1 = 1 
-2019-01-25 09:51:55.711 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| ==> Parameters: 
-2019-01-25 09:51:55.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount_COUNT [159] -| <==      Total: 1
-2019-01-25 09:51:55.722 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| ==>  Preparing: select s.*,p.count from sys_role s LEFT JOIN (select sys_role_id,count(sys_role_id) as count from sys_role_user GROUP BY sys_role_id) p on p.sys_role_id = s.id where 1=1 limit ?,? 
-2019-01-25 09:51:55.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| ==> Parameters: 0(Integer), 10(Integer)
-2019-01-25 09:51:55.733 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRolesCount [159] -| <==      Total: 10
-2019-01-25 09:51:56.750 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.755 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:56.755 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:56.760 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.760 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.766 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:56.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:56.767 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:51:56.768 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:56.768 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:56.769 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:51:56.769 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.778 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:56.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:51:56.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:56.779 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:51:56.779 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.779 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.779 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:56.780 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:56.780 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.789 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:56.790 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:56.790 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:51:56.791 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:56.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:51:56.791 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.791 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:51:56.795 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:56.797 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.797 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:56.798 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:51:56.801 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:51:56.802 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:51:56.805 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:56.807 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:51:56.807 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.808 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:51:56.808 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:51:56.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 09:51:56.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 09:51:56.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 09:51:56.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 09:51:56.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 09:51:56.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 09:52:00.478 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:00.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:00.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:00.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:00.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:00.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:00.502 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:00.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:00.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:00.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:00.522 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:00.523 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:00.525 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno 
-2019-01-25 09:52:00.525 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:00.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 1
-2019-01-25 09:52:00.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:00.536 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:00.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:00.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:00.546 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:00.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:23.111 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:23.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:23.115 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:23.122 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:23.123 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:23.124 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:23.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:23.132 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:23.133 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:23.139 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.348 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.368 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.378 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.389 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.611 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.611 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.612 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.617 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.617 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.618 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.618 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.619 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.620 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.627 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.627 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.628 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.635 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.639 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.640 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.640 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.642 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.642 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.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=?) 
-2019-01-25 09:52:35.643 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.643 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.644 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.649 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.653 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.653 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.654 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.654 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.655 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.661 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.661 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.662 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.662 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.664 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:52:35.664 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:52:35.665 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.666 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.667 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.667 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.668 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:52:35.671 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 09:52:35.672 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 09:52:35.675 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.676 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.676 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 09:52:35.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 09:52:35.677 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 09:52:35.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 09:52:35.678 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 09:52:35.684 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 09:52:35.691 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 09:52:35.691 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.692 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.733 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.733 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.734 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.737 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.738 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.740 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.740 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.741 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.745 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.746 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.746 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.748 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.748 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.749 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.751 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.759 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.759 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.759 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.759 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.760 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.763 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.764 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.764 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.765 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.767 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.769 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.770 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.771 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.771 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:52:35.772 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 09:52:35.772 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.774 |-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 
-2019-01-25 09:52:35.774 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 09:52:35.774 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.775 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.776 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:52:35.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 09:52:35.781 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 09:52:35.781 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 09:52:35.785 |-ERROR [http-nio-8089-exec-1] com.xintong.visualinspection.controller.BaseController [195] -| 其他错误
-org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.doTranslate(SQLErrorCodeSQLExceptionTranslator.java:231)
-	at org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate(AbstractFallbackSQLExceptionTranslator.java:73)
-	at org.mybatis.spring.MyBatisExceptionTranslator.translateExceptionIfPossible(MyBatisExceptionTranslator.java:73)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:446)
-	at com.sun.proxy.$Proxy95.selectList(Unknown Source)
-	at org.mybatis.spring.SqlSessionTemplate.selectList(SqlSessionTemplate.java:230)
-	at org.apache.ibatis.binding.MapperMethod.executeForMany(MapperMethod.java:137)
-	at org.apache.ibatis.binding.MapperMethod.execute(MapperMethod.java:75)
-	at org.apache.ibatis.binding.MapperProxy.invoke(MapperProxy.java:59)
-	at com.sun.proxy.$Proxy112.getAllWG(Unknown Source)
-	at com.xintong.visualinspection.service.impl.DepartmentServiceImpl.getAllWG(DepartmentServiceImpl.java:157)
-	at com.xintong.visualinspection.controller.DepartmentController.getAllWG(DepartmentController.java:167)
-	at com.xintong.visualinspection.controller.DepartmentController$$FastClassBySpringCGLIB$$13d08010.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.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.DepartmentController$$EnhancerBySpringCGLIB$$4d5f0bb.getAllWG(<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:498)
-	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.doGet(FrameworkServlet.java:861)
-	at javax.servlet.http.HttpServlet.service(HttpServlet.java:622)
-	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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
-	at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
-	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
-	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
-	at com.mysql.jdbc.Util.handleNewInstance(Util.java:425)
-	at com.mysql.jdbc.Util.getInstance(Util.java:408)
-	at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:943)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973)
-	at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3909)
-	at com.mysql.jdbc.MysqlIO.sendCommand(MysqlIO.java:2527)
-	at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:2680)
-	at com.mysql.jdbc.ConnectionImpl.execSQL(ConnectionImpl.java:2501)
-	at com.mysql.jdbc.PreparedStatement.executeInternal(PreparedStatement.java:1858)
-	at com.mysql.jdbc.PreparedStatement.execute(PreparedStatement.java:1197)
-	at com.alibaba.druid.pool.DruidPooledPreparedStatement.execute(DruidPooledPreparedStatement.java:493)
-	at sun.reflect.GeneratedMethodAccessor139.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.logging.jdbc.PreparedStatementLogger.invoke(PreparedStatementLogger.java:59)
-	at com.sun.proxy.$Proxy141.execute(Unknown Source)
-	at org.apache.ibatis.executor.statement.PreparedStatementHandler.query(PreparedStatementHandler.java:63)
-	at org.apache.ibatis.executor.statement.RoutingStatementHandler.query(RoutingStatementHandler.java:79)
-	at org.apache.ibatis.executor.SimpleExecutor.doQuery(SimpleExecutor.java:63)
-	at org.apache.ibatis.executor.BaseExecutor.queryFromDatabase(BaseExecutor.java:324)
-	at org.apache.ibatis.executor.BaseExecutor.query(BaseExecutor.java:156)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:109)
-	at org.apache.ibatis.executor.CachingExecutor.query(CachingExecutor.java:83)
-	at sun.reflect.GeneratedMethodAccessor136.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.apache.ibatis.plugin.Invocation.proceed(Invocation.java:49)
-	at com.github.pagehelper.util.SqlUtil.doIntercept(SqlUtil.java:175)
-	at com.github.pagehelper.util.SqlUtil.intercept(SqlUtil.java:84)
-	at com.github.pagehelper.PageHelper.intercept(PageHelper.java:50)
-	at org.apache.ibatis.plugin.Plugin.invoke(Plugin.java:61)
-	at com.sun.proxy.$Proxy139.query(Unknown Source)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:148)
-	at org.apache.ibatis.session.defaults.DefaultSqlSession.selectList(DefaultSqlSession.java:141)
-	at sun.reflect.GeneratedMethodAccessor156.invoke(Unknown Source)
-	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-	at java.lang.reflect.Method.invoke(Method.java:498)
-	at org.mybatis.spring.SqlSessionTemplate$SqlSessionInterceptor.invoke(SqlSessionTemplate.java:433)
-	... 131 common frames omitted
-2019-01-25 09:52:35.789 |-WARN  [http-nio-8089-exec-1] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [189] -| Resolved exception caused by Handler execution: org.springframework.jdbc.BadSqlGrammarException: 
-### Error querying database.  Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-### The error may exist in file [D:\Visuallnspection_njy\VisualInspection_server\target\classes\com\xintong\visualinspection\mapper\cluster\DepartmentMapper.xml]
-### The error may involve defaultParameterMap
-### The error occurred while setting parameters
-### SQL: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id
-### Cause: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-; bad SQL grammar []; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'visualinspection_njy.t_br_layer_wrecker_group' doesn't exist
-2019-01-25 09:52:35.791 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.794 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.795 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.802 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.803 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.803 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.825 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.826 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.826 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.844 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.845 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.849 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 09:52:35.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 09:52:35.860 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 09:52:35.871 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:35.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:35.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:35.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:35.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.892 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:35.893 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:35.893 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:35.900 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:35.905 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:35.906 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:35.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:52:35.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:52:35.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:52:36.029 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:36.034 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:52:36.035 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:52:36.041 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:52:36.042 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:52:36.042 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:36.069 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:52:36.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:52:36.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:52:36.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:52:36.080 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:52:36.083 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:52:36.095 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 09:52:36.095 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 09:52:36.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 09:52:36.103 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 09:52:36.104 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 09:52:36.113 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 09:54:17.732 |-INFO  [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on MSI with PID 9260 (D:\Visuallnspection_njy\VisualInspection_server\target\classes started by liwei in D:\Visuallnspection_njy\VisualInspection_server)
-2019-01-25 09:54:17.737 |-INFO  [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
-2019-01-25 09:54:17.948 |-INFO  [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
-2019-01-25 09:54:17.976 |-INFO  [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1443a0d5: startup date [Fri Jan 25 09:54:17 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 09:54:19.748 |-INFO  [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
-2019-01-25 09:54:20.673 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2e02f48d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.833 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$c6b0bcc7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.846 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.851 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@6f480b14' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.859 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$eb855f79] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.880 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.900 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$19466889] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.927 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:20.929 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$77152aab] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 09:54:21.507 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
-2019-01-25 09:54:21.520 |-INFO  [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
-2019-01-25 09:54:21.522 |-INFO  [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
-2019-01-25 09:54:21.661 |-INFO  [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
-2019-01-25 09:54:21.661 |-INFO  [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 3685 ms
-2019-01-25 09:54:22.091 |-INFO  [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
-2019-01-25 09:54:24.434 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
-2019-01-25 09:54:24.435 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
-2019-01-25 09:54:24.435 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
-2019-01-25 09:54:24.435 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
-2019-01-25 09:54:24.435 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
-2019-01-25 09:54:24.436 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
-2019-01-25 09:54:24.436 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
-2019-01-25 09:54:24.436 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
-2019-01-25 09:54:24.436 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
-2019-01-25 09:54:24.436 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
-2019-01-25 09:54:24.437 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
-2019-01-25 09:54:24.437 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
-2019-01-25 09:54:24.437 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
-2019-01-25 09:54:24.438 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
-2019-01-25 09:54:25.687 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 
-2019-01-25 09:54:25.696 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService  'threadExecutor'
-2019-01-25 09:54:25.909 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
-2019-01-25 09:54:25.910 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
-2019-01-25 09:54:26.034 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@4c9eb5eb, org.springframework.security.web.context.SecurityContextPersistenceFilter@6498b89a, org.springframework.security.web.header.HeaderWriterFilter@1b544c7f, org.springframework.web.filter.CorsFilter@419c3523, org.springframework.security.web.authentication.logout.LogoutFilter@2460b547, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@7ba2268f, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@7044a562, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@3dee04c1, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@64060de, org.springframework.security.web.session.SessionManagementFilter@7581197d, org.springframework.security.web.access.ExceptionTranslationFilter@4409efd7, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@25cc97b4]
-2019-01-25 09:54:26.061 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@4e7fc4cb, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@31887413, org.springframework.security.web.context.SecurityContextPersistenceFilter@5608a91, org.springframework.security.web.header.HeaderWriterFilter@33a6dfc4, org.springframework.security.web.authentication.logout.LogoutFilter@8849577, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@33f03ab7, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@42fb8f73, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@47262017, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@43cd30dc, org.springframework.security.web.session.SessionManagementFilter@4c6d5242, org.springframework.security.web.access.ExceptionTranslationFilter@64d47107, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@13459fa]
-2019-01-25 09:54:26.221 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@1443a0d5: startup date [Fri Jan 25 09:54:17 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 09:54:26.343 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.344 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.345 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:54:26.345 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:54:26.346 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:54:26.346 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:54:26.346 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 09:54:26.346 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.347 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.350 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.351 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.351 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.351 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.352 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.352 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.352 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.353 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
-2019-01-25 09:54:26.353 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.353 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 09:54:26.355 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.356 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.357 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.358 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.358 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.359 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.359 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.359 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.360 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.361 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.361 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.361 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.362 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.362 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.362 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.362 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.363 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 09:54:26.363 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
-2019-01-25 09:54:26.364 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.364 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 09:54:26.364 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.366 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.366 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.366 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.366 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.367 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.367 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
-2019-01-25 09:54:26.369 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
-2019-01-25 09:54:26.369 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
-2019-01-25 09:54:26.369 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
-2019-01-25 09:54:26.370 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
-2019-01-25 09:54:26.370 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
-2019-01-25 09:54:26.370 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
-2019-01-25 09:54:26.370 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
-2019-01-25 09:54:26.371 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.371 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
-2019-01-25 09:54:26.371 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
-2019-01-25 09:54:26.371 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
-2019-01-25 09:54:26.372 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.373 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
-2019-01-25 09:54:26.373 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
-2019-01-25 09:54:26.373 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.374 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.375 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 09:54:26.375 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.375 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.376 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:54:26.376 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:54:26.376 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 09:54:26.376 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 09:54:26.377 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 09:54:26.377 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
-2019-01-25 09:54:26.378 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
-2019-01-25 09:54:26.379 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer)
-2019-01-25 09:54:26.379 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.379 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.379 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
-2019-01-25 09:54:26.380 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
-2019-01-25 09:54:26.382 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:54:26.382 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
-2019-01-25 09:54:26.383 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
-2019-01-25 09:54:26.383 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:54:26.383 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
-2019-01-25 09:54:26.384 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
-2019-01-25 09:54:26.384 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
-2019-01-25 09:54:26.384 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 09:54:26.386 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
-2019-01-25 09:54:26.386 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
-2019-01-25 09:54:26.386 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
-2019-01-25 09:54:26.386 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
-2019-01-25 09:54:26.387 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
-2019-01-25 09:54:26.387 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
-2019-01-25 09:54:26.387 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
-2019-01-25 09:54:26.387 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.388 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.388 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
-2019-01-25 09:54:26.389 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
-2019-01-25 09:54:26.390 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.391 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.391 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.391 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.392 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.392 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.392 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 09:54:26.392 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
-2019-01-25 09:54:26.395 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.395 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:54:26.395 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
-2019-01-25 09:54:26.395 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.395 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.396 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.396 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.396 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.396 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.397 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.397 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.397 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.401 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:54:26.401 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.401 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.401 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:54:26.402 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
-2019-01-25 09:54:26.402 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.402 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.402 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.403 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.403 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.403 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.403 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
-2019-01-25 09:54:26.403 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
-2019-01-25 09:54:26.404 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 09:54:26.404 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 09:54:26.404 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
-2019-01-25 09:54:26.405 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.406 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.406 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.406 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.406 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.407 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.407 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
-2019-01-25 09:54:26.407 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.407 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.407 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.408 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.408 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.408 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.408 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.409 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.409 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.409 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 09:54:26.411 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:54:26.411 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:54:26.411 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.412 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:54:26.412 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.412 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.412 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
-2019-01-25 09:54:26.413 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.413 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 09:54:26.413 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
-2019-01-25 09:54:26.414 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:54:26.414 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:54:26.414 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:54:26.416 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
-2019-01-25 09:54:26.416 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:54:26.416 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.417 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
-2019-01-25 09:54:26.417 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.417 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
-2019-01-25 09:54:26.418 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
-2019-01-25 09:54:26.419 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
-2019-01-25 09:54:26.419 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
-2019-01-25 09:54:26.420 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 09:54:26.420 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 09:54:26.420 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
-2019-01-25 09:54:26.422 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.422 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
-2019-01-25 09:54:26.423 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
-2019-01-25 09:54:26.423 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
-2019-01-25 09:54:26.423 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
-2019-01-25 09:54:26.424 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
-2019-01-25 09:54:26.424 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 09:54:26.424 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
-2019-01-25 09:54:26.425 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 09:54:26.425 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 09:54:26.425 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
-2019-01-25 09:54:26.426 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
-2019-01-25 09:54:26.427 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
-2019-01-25 09:54:26.427 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
-2019-01-25 09:54:26.428 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
-2019-01-25 09:54:26.523 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
-2019-01-25 09:54:26.593 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:54:26.593 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:54:26.643 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
-2019-01-25 09:54:26.644 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
-2019-01-25 09:54:26.644 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
-2019-01-25 09:54:26.645 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
-2019-01-25 09:54:26.646 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
-2019-01-25 09:54:26.646 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
-2019-01-25 09:54:26.646 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
-2019-01-25 09:54:26.647 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
-2019-01-25 09:54:26.647 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
-2019-01-25 09:54:26.648 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
-2019-01-25 09:54:26.648 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
-2019-01-25 09:54:26.649 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
-2019-01-25 09:54:26.649 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
-2019-01-25 09:54:26.650 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
-2019-01-25 09:54:26.650 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
-2019-01-25 09:54:26.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
-2019-01-25 09:54:26.651 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
-2019-01-25 09:54:26.652 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
-2019-01-25 09:54:26.653 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
-2019-01-25 09:54:26.654 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
-2019-01-25 09:54:26.655 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
-2019-01-25 09:54:26.656 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
-2019-01-25 09:54:26.657 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
-2019-01-25 09:54:26.658 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
-2019-01-25 09:54:26.732 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 09:54:27.520 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 09:54:27.521 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 09:54:27.522 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 09:54:28.500 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 09:54:28.506 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 09:54:28.508 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 09:54:28.509 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 09:54:28.510 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 09:54:28.511 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 09:54:28.512 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:54:28.513 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:54:28.515 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
-2019-01-25 09:54:28.516 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
-2019-01-25 09:54:28.516 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
-2019-01-25 09:54:28.517 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
-2019-01-25 09:54:28.517 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
-2019-01-25 09:54:28.517 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
-2019-01-25 09:54:28.518 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
-2019-01-25 09:54:28.529 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 09:54:28.530 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:54:28.530 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 09:54:28.530 |-INFO  [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
-2019-01-25 09:54:28.539 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 09:54:28.541 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 09:54:28.541 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 09:54:28.547 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 09:54:28.576 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
-2019-01-25 09:54:29.436 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
-2019-01-25 09:54:29.477 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
-2019-01-25 09:54:29.497 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
-2019-01-25 09:54:29.498 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 09:54:29.498 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 09:54:29.499 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 09:54:29.499 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 09:54:30.085 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.086 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
-2019-01-25 09:54:30.086 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.087 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
-2019-01-25 09:54:30.088 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
-2019-01-25 09:54:30.088 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
-2019-01-25 09:54:30.088 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.089 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
-2019-01-25 09:54:30.089 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.089 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.090 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.090 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.090 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.091 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
-2019-01-25 09:54:30.091 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.091 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 09:54:30.092 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
-2019-01-25 09:54:30.825 |-INFO  [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
-2019-01-25 09:54:30.837 |-WARN  [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
-2019-01-25 09:54:31.089 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 09:54:31.091 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
-2019-01-25 09:54:31.091 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
-2019-01-25 09:54:31.100 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
-2019-01-25 09:54:31.102 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
-2019-01-25 09:54:31.103 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 09:54:31.107 |-INFO  [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
-2019-01-25 09:54:31.110 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
-2019-01-25 09:54:31.127 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
-2019-01-25 09:54:31.138 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
-2019-01-25 09:54:31.142 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
-2019-01-25 09:54:31.145 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
-2019-01-25 09:54:31.148 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
-2019-01-25 09:54:31.150 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
-2019-01-25 09:54:31.156 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
-2019-01-25 09:54:31.158 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
-2019-01-25 09:54:31.160 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
-2019-01-25 09:54:31.162 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
-2019-01-25 09:54:31.163 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
-2019-01-25 09:54:31.213 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
-2019-01-25 09:54:31.458 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==>  Preparing: SELECT * FROM sys_code WHERE valid!=0 
-2019-01-25 09:54:31.476 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:54:31.534 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <==      Total: 70
-2019-01-25 09:54:31.536 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
-2019-01-25 09:54:31.538 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
-2019-01-25 09:54:31.631 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==>  Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a 
-2019-01-25 09:54:31.631 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:54:31.702 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <==      Total: 26
-2019-01-25 09:54:31.703 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:26
-2019-01-25 09:54:31.704 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==>  Preparing: SELECT * FROM t_sys_organ 
-2019-01-25 09:54:31.705 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters: 
-2019-01-25 09:54:31.736 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <==      Total: 7
-2019-01-25 09:54:31.737 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:7
-2019-01-25 09:54:31.757 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:54:31.758 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:54:31.772 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:54:31.772 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:26
-2019-01-25 09:54:31.787 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
-2019-01-25 09:54:31.800 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
-2019-01-25 09:54:31.812 |-INFO  [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
-2019-01-25 09:54:31.827 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
-2019-01-25 09:54:31.834 |-INFO  [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 14.376 seconds (JVM running for 16.552)
-2019-01-25 09:54:35.945 |-INFO  [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
-2019-01-25 09:54:35.946 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
-2019-01-25 09:54:35.982 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 36 ms
-2019-01-25 09:54:36.082 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.082 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.082 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.082 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.082 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.120 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.121 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.128 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.128 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.129 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.135 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.136 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.136 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.144 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.151 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.159 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.182 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.183 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.200 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.201 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.202 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.211 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.211 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.211 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.212 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.213 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.218 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.219 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.220 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.221 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.222 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.227 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.229 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.229 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.230 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.232 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.232 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.238 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.238 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.265 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.265 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.265 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.265 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.266 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.275 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.275 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.275 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.275 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.275 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.323 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 09:54:36.325 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 09:54:36.325 |-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 
-2019-01-25 09:54:36.327 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 09:54:36.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 09:54:36.329 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 09:54:36.334 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 09:54:36.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 09:54:36.341 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 09:54:36.343 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.344 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.352 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 09:54:36.353 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 09:54:36.354 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:54:36.421 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.422 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.422 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.430 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.431 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.441 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.441 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.442 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.442 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.442 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.442 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.443 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.443 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.450 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.452 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.457 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.457 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.458 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.463 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.465 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.470 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.747 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.770 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.772 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.772 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.772 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.774 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.774 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.776 |-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 
-2019-01-25 09:54:36.778 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:54:36.778 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 09:54:36.778 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 09:54:36.779 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 09:54:36.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 09:54:36.795 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 09:54:36.795 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 09:54:36.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 09:54:36.846 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.851 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:36.852 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:36.862 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:36.864 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:36.864 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.878 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:36.880 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:36.880 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:36.927 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:36.934 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:36.935 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:36.981 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 09:54:36.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 09:54:36.991 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 09:54:37.004 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:37.010 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:37.011 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:37.019 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:37.020 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:37.020 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:37.029 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:37.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:37.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:37.035 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:37.040 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:37.043 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:37.049 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 09:54:37.050 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 09:54:37.064 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 09:54:37.166 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:37.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:54:37.170 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:54:37.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:54:37.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:54:37.179 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:37.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:54:37.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:54:37.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:54:37.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:54:37.340 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 09:54:37.342 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:54:37.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 09:54:37.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 09:54:37.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 09:54:37.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 09:54:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 09:54:37.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 09:56:52.210 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:56:52.214 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:56:52.221 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:56:52.221 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:56:52.221 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 09:56:52.234 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:56:52.234 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:56:52.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:56:52.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:56:52.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:56:52.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:56:52.242 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:56:52.242 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:56:52.243 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:56:52.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:56:52.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 09:56:52.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 
-2019-01-25 09:56:52.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 09:56:52.248 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.248 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:56:52.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:56:52.259 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:56:52.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.259 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:56:52.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 09:56:52.261 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:56:52.261 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.262 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:56:52.262 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.266 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:56:52.266 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:56:52.266 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.266 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 09:56:52.267 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:56:52.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:56:52.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.276 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:56:52.278 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:56:52.278 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:56:52.280 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:56:52.281 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 09:56:52.281 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:56:52.282 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 09:56:52.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.282 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 09:56:52.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:56:52.290 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 09:56:52.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.102 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.103 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.129 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.131 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.141 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.142 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.150 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.153 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.160 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.161 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.162 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.172 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.173 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.180 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.403 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.404 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.404 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.405 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.409 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.411 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.411 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.454 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.454 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.454 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.454 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.454 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.455 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.456 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.456 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.457 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.457 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.463 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.467 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.474 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.474 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.475 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.475 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.478 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.478 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.481 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.482 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.482 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.486 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.487 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.487 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.487 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.488 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.488 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.489 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.492 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.492 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.493 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.495 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.496 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:17:00.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:17:00.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.497 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.499 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.500 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.501 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.501 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.502 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:17:00.504 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.506 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.507 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.508 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.512 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:17:00.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:17:00.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:17:00.520 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:17:00.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:17:00.521 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:17:00.525 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:17:00.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:17:00.554 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:17:00.559 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.593 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.593 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.593 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.600 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.600 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.601 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.606 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.607 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.608 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.608 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.608 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.609 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.609 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.617 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.619 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.619 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.619 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.620 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.621 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.626 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.626 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.629 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.630 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.631 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.631 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:17:00.632 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.632 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:17:00.633 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:17:00.633 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:17:00.634 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:17:00.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:17:00.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:17:00.642 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:17:00.644 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:17:00.662 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.666 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.672 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.673 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.673 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.682 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.696 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.700 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.701 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:17:00.706 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:17:00.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:17:00.728 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.732 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.733 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.741 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.741 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.752 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.752 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.759 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.764 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.765 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.768 |-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=? 
-2019-01-25 10:17:00.769 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:17:00.776 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:17:00.875 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.882 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:00.882 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:00.902 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:00.902 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:00.903 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.921 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:00.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:00.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:00.934 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:00.939 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:00.940 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:00.953 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:17:00.954 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:17:00.969 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:17:00.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:17:00.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:17:00.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:17:02.179 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.191 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.200 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.213 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.215 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.227 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.229 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.229 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.230 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.232 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.233 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.235 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.236 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.236 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.240 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:17:02.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:17:02.242 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.242 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.243 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.243 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.243 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.243 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.245 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.245 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.246 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.246 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.246 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.247 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.252 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:02.253 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.254 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.255 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.256 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:17:02.256 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.256 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.256 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:17:02.259 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.259 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.260 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.260 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.261 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.261 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.263 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.265 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.267 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:17:02.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:17:02.275 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.275 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.275 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.277 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.280 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.282 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.283 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.285 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.286 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:17:02.287 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_sys_users WHERE id = ? 
-2019-01-25 10:17:02.288 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2645(Integer)
-2019-01-25 10:17:02.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:17:02.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:17:02.295 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:02.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:17:02.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 482(String)
-2019-01-25 10:17:02.300 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:17:02.307 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:02.321 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:17:02.326 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:02.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:17:02.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:02.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:17:02.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:02.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:02.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:02.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.349 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:02.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:02.350 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:02.367 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:02.371 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:02.372 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:02.375 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:17:02.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:17:02.385 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:17:09.058 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:09.063 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:09.064 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:09.080 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:09.081 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:09.082 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:09.101 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:09.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:09.102 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:09.120 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:09.125 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:09.128 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:09.132 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:17:09.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 481(String)
-2019-01-25 10:17:09.151 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:09.367 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:09.371 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:09.372 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:09.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:09.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 
-2019-01-25 10:17:09.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:09.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:09.396 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:09.397 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:09.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:09.412 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:09.414 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:09.418 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:17:09.419 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 300(String)
-2019-01-25 10:17:09.427 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:39.596 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.597 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.599 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.599 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.599 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.610 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.611 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.611 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.614 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.614 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.615 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.616 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.619 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.620 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.620 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.620 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.621 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.621 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.623 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.623 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.624 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.627 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.630 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.630 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.631 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.632 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.633 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.633 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.635 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.635 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.637 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.641 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.641 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.642 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.642 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.643 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.643 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.646 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:17:39.646 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:17:39.648 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.649 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.651 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.652 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:17:39.653 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:17:39.654 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:17:39.659 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:17:39.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:17:39.660 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:17:39.660 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:17:39.661 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:17:39.668 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:17:39.678 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:17:39.679 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.680 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.689 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.732 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.732 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.732 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.738 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.738 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.746 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.747 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.747 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.750 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.751 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.757 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.758 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.759 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.759 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.760 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.763 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.765 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.771 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.771 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.772 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.772 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.773 |-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 
-2019-01-25 10:17:39.773 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:17:39.773 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:17:39.774 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:17:39.774 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.775 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.776 |-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 
-2019-01-25 10:17:39.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:17:39.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:17:39.788 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:17:39.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:17:39.797 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.801 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.802 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.808 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.809 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.809 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.818 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.819 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.825 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.829 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.830 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.834 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:17:39.835 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:17:39.845 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:17:39.853 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.859 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:39.859 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:39.865 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:39.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:39.866 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:39.894 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:39.895 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:39.901 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:39.905 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:39.906 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:39.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:17:39.909 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:17:39.917 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:17:40.009 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:40.015 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:40.015 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:40.021 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:40.022 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:40.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:40.062 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:40.064 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:40.064 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:40.070 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:40.073 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:40.074 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:40.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:17:40.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:17:40.092 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:17:40.094 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:17:40.095 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:17:40.116 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:17:41.278 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:41.285 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:17:41.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:17:41.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:17:41.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:17:41.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:41.330 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:17:41.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:17:41.332 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:17:41.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:17:41.345 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:17:41.348 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:17:41.356 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:17:41.357 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:17:41.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:17:41.365 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:17:41.366 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:17:41.456 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:17:41.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:17:41.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:17:41.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:22:44.149 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.149 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.150 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.152 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.162 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.168 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.169 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.172 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.175 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.181 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.181 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.183 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.183 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.184 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.184 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.186 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.187 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.194 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.194 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.194 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.195 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.196 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.196 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.201 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.201 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.206 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.207 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.207 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.207 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.208 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.208 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.209 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:22:44.209 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:22:44.221 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.222 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:22:44.222 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:22:44.228 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:22:44.229 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:22:44.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:22:44.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:22:44.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:22:44.256 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.256 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.322 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.322 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.323 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.326 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.326 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.329 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.329 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.330 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.332 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.333 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.334 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.337 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.337 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.338 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.338 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.339 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.339 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.343 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.344 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.345 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.346 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.347 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.348 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.348 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.349 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.349 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.349 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.353 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.354 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.355 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.356 |-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 
-2019-01-25 10:22:44.356 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:22:44.358 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.360 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.361 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.362 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:22:44.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:22:44.366 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.366 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:22:44.367 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.368 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:22:44.369 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:22:44.374 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:22:44.381 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:22:44.391 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.395 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.395 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.402 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.403 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.403 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.419 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.420 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.421 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.426 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.430 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.431 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.435 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:22:44.436 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:22:44.445 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:22:44.457 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.463 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.463 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.469 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.484 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.491 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.496 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.496 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.499 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:22:44.500 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:22:44.505 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:22:44.649 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.654 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:44.655 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:44.664 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:44.664 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:44.665 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.674 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:44.675 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:44.676 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:44.682 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:44.687 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:44.689 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:44.701 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:22:44.702 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:22:44.711 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:22:44.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:22:44.712 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:22:44.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:22:46.159 |-ERROR [http-nio-8089-exec-7] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 10:22:46.545 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:46.549 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:22:46.549 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:22:46.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:22:46.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:22:46.558 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:46.567 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:22:46.568 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:22:46.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:22:46.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:22:46.579 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:22:46.580 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:22:46.588 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:22:46.589 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:22:46.597 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:22:46.598 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:22:46.598 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:22:46.661 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:22:46.662 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:22:46.662 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:22:46.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:28:44.264 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.265 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.264 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.266 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.268 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.284 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.284 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.285 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.286 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.286 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.286 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.294 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.295 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.296 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.298 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.299 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.300 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.300 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.300 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.300 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.302 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.305 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.308 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.309 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.310 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.311 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.311 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.312 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.312 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.312 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.313 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.313 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.314 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.316 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.318 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.320 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.321 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.321 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.321 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.323 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.323 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.324 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.325 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.325 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:28:44.326 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.326 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:28:44.327 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.328 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.331 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:28:44.332 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:28:44.333 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:28:44.335 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.336 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:28:44.336 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.336 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:28:44.337 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:28:44.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:28:44.338 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:28:44.344 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:28:44.349 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:28:44.350 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.350 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.363 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.416 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.417 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.417 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.424 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.424 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.425 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.425 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.425 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.433 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.433 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.435 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.444 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.445 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.446 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.447 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.447 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.452 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.454 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.456 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.457 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.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 
-2019-01-25 10:28:44.459 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.459 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:28:44.459 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.460 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.460 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.461 |-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 
-2019-01-25 10:28:44.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:28:44.462 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:28:44.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:28:44.471 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:28:44.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:28:44.471 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:28:44.484 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.490 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.491 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.499 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.512 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.513 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.513 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.525 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.526 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:28:44.530 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:28:44.539 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:28:44.548 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.552 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.552 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.561 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.561 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.562 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.570 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.571 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.571 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.577 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.594 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.595 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.598 |-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=? 
-2019-01-25 10:28:44.598 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:28:44.609 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:28:44.759 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.763 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:44.763 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:44.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:44.774 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:44.774 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.783 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:44.784 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:44.785 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:44.789 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:44.795 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:44.797 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:44.809 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:28:44.810 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:28:44.815 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:28:44.816 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:28:44.816 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:28:44.825 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:28:46.581 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:46.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:28:46.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:28:46.597 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:28:46.598 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:28:46.599 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:46.613 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:28:46.613 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:28:46.614 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:28:46.621 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:28:46.627 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:28:46.628 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:28:46.637 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:28:46.637 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:28:46.644 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:28:46.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:28:46.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:28:46.711 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:28:46.712 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:28:46.713 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:28:46.719 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:31:00.942 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:00.945 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:00.946 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:00.946 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:00.950 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:00.961 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:00.961 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:00.962 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:00.963 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:00.969 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:00.969 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:00.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:00.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:00.971 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:00.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:00.972 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:00.973 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:00.977 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:00.977 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:00.978 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:00.978 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:00.979 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:00.980 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.985 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:00.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:00.985 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.985 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.989 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:00.989 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.989 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:00.990 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:00.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:00.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:00.992 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.996 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:00.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:00.996 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:00.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:00.997 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:00.997 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:00.997 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.001 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.002 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.002 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.002 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.003 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.003 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.006 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.006 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.007 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.008 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.008 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.009 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.009 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:31:01.010 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:31:01.010 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:31:01.012 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:31:01.015 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:31:01.016 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:31:01.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:31:01.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:31:01.025 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:31:01.026 |-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 
-2019-01-25 10:31:01.027 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:31:01.038 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:31:01.039 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.039 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.115 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.115 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.116 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.121 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.121 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.122 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.131 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.132 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.133 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.133 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.133 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.133 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.146 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.146 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.147 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.147 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.149 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.154 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.154 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.156 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.159 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.160 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.161 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.161 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.163 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:31:01.164 |-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 
-2019-01-25 10:31:01.164 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:31:01.164 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:31:01.167 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:31:01.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:31:01.173 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:31:01.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:31:01.178 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:31:01.199 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.204 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.204 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.211 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.212 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.213 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.221 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.222 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.222 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.229 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.234 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.235 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:31:01.240 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:31:01.250 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:31:01.260 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.265 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.265 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.278 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.279 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.280 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.288 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.289 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.289 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.295 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.300 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.301 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.303 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:31:01.304 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:31:01.309 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:31:01.468 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:01.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:01.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:01.481 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:01.481 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:01.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:01.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:01.495 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:01.501 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:01.502 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:01.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:31:01.516 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:31:01.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:31:01.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:31:01.525 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:31:01.535 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:31:03.973 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:03.977 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:31:03.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:31:03.986 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:31:03.987 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:31:03.987 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:03.997 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:31:03.998 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:31:03.999 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:31:04.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:31:04.010 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:31:04.011 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:31:04.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:31:04.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:31:04.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:31:04.029 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:31:04.031 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:31:04.101 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:31:04.101 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:31:04.102 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:31:04.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:32:50.467 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.471 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.474 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.479 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.482 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.486 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.486 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.493 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.496 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.497 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.497 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.498 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.500 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.504 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.504 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.504 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.508 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.510 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.510 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.510 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.513 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.514 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.514 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.514 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.515 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.515 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.518 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.519 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.520 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.521 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.521 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.521 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.522 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.525 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.527 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.527 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.527 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.528 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.528 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:32:50.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:32:50.533 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.533 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:32:50.533 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:32:50.534 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.534 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.535 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.536 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:32:50.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:32:50.538 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:32:50.541 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:32:50.548 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:32:50.548 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:32:50.548 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.548 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:32:50.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:32:50.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.614 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.616 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.616 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.618 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.618 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.620 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.620 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.621 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.621 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.626 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.629 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.630 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.630 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.632 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.639 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.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=?) 
-2019-01-25 10:32:50.640 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.641 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.641 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.641 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.642 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.643 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.646 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.647 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.650 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.651 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.651 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.652 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:32:50.652 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.652 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.652 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:32:50.653 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.653 |-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 
-2019-01-25 10:32:50.654 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:32:50.654 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:32:50.654 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:32:50.662 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:32:50.663 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:32:50.664 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:32:50.674 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.678 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.678 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.684 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.685 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.685 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.695 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.704 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.708 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.709 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.713 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:32:50.713 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:32:50.722 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:32:50.732 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.736 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.767 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.768 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:32:50.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:32:50.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:32:50.915 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.920 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:50.921 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:50.929 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:50.930 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:50.931 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.957 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:50.958 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:50.959 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:50.965 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:50.969 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:50.970 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:50.982 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:32:50.982 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:32:50.989 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:32:50.992 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:32:50.993 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:32:51.003 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:32:52.279 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:52.285 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:52.286 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:52.292 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:52.293 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:52.294 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:52.303 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:52.304 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:52.305 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:52.311 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:52.316 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:52.317 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:52.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:32:52.323 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:32:52.338 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:32:52.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:32:52.339 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:32:52.406 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:32:52.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:32:52.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:32:52.414 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:32:53.958 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:53.958 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:53.960 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:53.961 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:53.963 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:53.963 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:53.964 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:53.964 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:53.965 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:53.965 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:53.966 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:53.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:53.969 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:53.974 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:53.975 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:53.975 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:53.975 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:53.976 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.977 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:53.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:53.978 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:53.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:53.978 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.978 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.979 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:53.980 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:53.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:53.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:53.987 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:53.988 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.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=?) 
-2019-01-25 10:32:53.988 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:53.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:53.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.993 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:53.994 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:53.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=?) 
-2019-01-25 10:32:53.996 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:53.996 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:53.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:53.996 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:53.997 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.003 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.004 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.005 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.005 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.007 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.007 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.007 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.007 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.008 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.009 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.010 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:32:54.010 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:32:54.011 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.016 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:32:54.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:32:54.018 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:32:54.018 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:32:54.019 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:32:54.023 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:32:54.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:32:54.028 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.029 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.035 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:32:54.036 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:32:54.045 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:32:54.046 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.047 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.055 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.097 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.098 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.099 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.104 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.105 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.105 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.105 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.115 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.115 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.115 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.116 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.116 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.124 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.127 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.128 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.128 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.134 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.134 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.135 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.136 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:32:54.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:32:54.140 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.141 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.141 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.142 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:32:54.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:32:54.144 |-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 
-2019-01-25 10:32:54.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:32:54.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:32:54.150 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:32:54.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:32:54.159 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.163 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.164 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.177 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.178 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.186 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.187 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.187 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.193 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.197 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.197 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:32:54.201 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:32:54.211 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:32:54.216 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.220 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.221 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.227 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.227 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.228 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.236 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.237 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.245 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.250 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.251 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.253 |-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=? 
-2019-01-25 10:32:54.254 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:32:54.259 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:32:54.358 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.364 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:54.365 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:54.372 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:54.373 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:54.373 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.382 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:54.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:54.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:54.389 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:54.393 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:54.395 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:54.406 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:32:54.407 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:32:54.419 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:32:54.420 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:32:54.421 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:32:54.430 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:32:55.800 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:55.805 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:32:55.806 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:32:55.813 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:32:55.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:32:55.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:55.823 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:32:55.824 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:32:55.824 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:32:55.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:32:55.844 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:32:55.846 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:32:55.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:32:55.852 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:32:55.862 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:32:55.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:32:55.863 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:32:55.939 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:32:55.940 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:32:55.941 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:32:55.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:36:09.781 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.793 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.794 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.794 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.795 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.803 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.804 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.810 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.811 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.814 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.814 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.815 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.816 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.818 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.822 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.822 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.825 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.825 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.826 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.827 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.827 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.828 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.828 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.834 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.834 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.837 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.837 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.838 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.839 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.839 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.840 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.840 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.840 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.843 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.843 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.844 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.844 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.845 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.845 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:36:09.846 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:36:09.846 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.846 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.852 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.860 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.861 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.861 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.862 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.862 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.863 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.863 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.864 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.865 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:36:09.869 |-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 
-2019-01-25 10:36:09.869 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:36:09.874 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:36:09.875 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:36:09.877 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:36:09.878 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:36:09.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:36:09.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:36:09.880 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.881 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.884 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:36:09.889 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.935 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.935 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.936 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.946 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.946 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:09.947 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.947 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:09.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.955 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.955 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.955 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:09.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.956 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.957 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:09.957 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.957 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.968 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.969 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:09.971 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:09.972 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:09.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.975 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.978 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:09.979 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.979 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.980 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.980 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:36:09.981 |-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 
-2019-01-25 10:36:09.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:36:09.982 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:36:09.982 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:09.983 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:09.985 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:36:09.986 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:36:09.993 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:36:09.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:36:09.993 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:36:10.003 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.008 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:10.008 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:10.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:10.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:10.018 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.026 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:10.026 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:10.027 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.034 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:10.037 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:10.038 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:36:10.043 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:36:10.057 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:36:10.065 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:10.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:10.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:10.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:10.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.085 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:10.086 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:10.086 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:10.096 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:10.097 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.100 |-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=? 
-2019-01-25 10:36:10.100 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:36:10.106 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:36:10.232 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.237 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:10.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:10.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:10.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:10.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.256 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:10.257 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:10.257 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:10.269 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:10.275 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:10.276 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:10.288 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:36:10.290 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:36:10.296 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:36:10.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:36:10.298 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:36:10.306 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:36:11.524 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.529 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.530 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.537 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.538 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.539 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.549 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.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=?) 
-2019-01-25 10:36:11.551 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.556 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.558 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.560 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.561 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.562 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.562 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.562 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.563 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.569 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.569 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.571 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:36:11.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:36:11.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.580 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.580 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.581 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.581 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.581 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.582 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.582 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.589 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:36:11.589 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.590 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:36:11.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:11.591 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:36:11.591 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.604 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.605 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.604 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:11.605 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.605 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:11.606 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:11.607 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.607 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.609 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.610 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.613 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:36:11.613 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:36:11.615 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.616 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.617 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.619 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.619 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.620 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.621 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.622 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.625 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_sys_users WHERE id = ? 
-2019-01-25 10:36:11.625 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:36:11.626 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2645(Integer)
-2019-01-25 10:36:11.626 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 482(String)
-2019-01-25 10:36:11.627 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:36:11.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:36:11.630 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:36:11.635 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:36:11.636 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:36:11.637 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:36:11.646 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.652 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:36:11.653 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:36:11.662 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:36:11.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:36:11.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:36:11.670 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:36:11.671 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:36:11.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:36:11.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:36:11.675 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:36:11.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:36:11.681 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:36:11.685 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:36:11.686 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:36:11.691 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:36:11.692 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:36:11.700 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:39:58.964 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:58.964 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:58.967 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:58.967 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:58.971 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:58.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:58.984 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:58.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:58.986 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:58.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:58.987 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:58.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:58.987 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:58.994 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:58.994 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:58.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:58.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:58.995 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:58.998 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.000 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.000 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.000 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.001 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.001 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.004 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.005 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.009 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.010 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.010 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.011 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.011 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.011 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.011 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.012 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.014 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.016 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.016 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.019 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.021 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.022 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.025 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.028 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.029 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.029 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.029 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.030 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.029 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.030 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.032 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:39:59.033 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.033 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.033 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:39:59.038 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:39:59.038 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:39:59.040 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.041 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.042 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:39:59.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:39:59.044 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:39:59.044 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:39:59.048 |-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 
-2019-01-25 10:39:59.049 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:39:59.052 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:39:59.060 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:39:59.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.061 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.071 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.124 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.125 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.126 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.127 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.132 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.132 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.140 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.140 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.141 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.142 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.145 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.146 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.146 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.151 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.152 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.153 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.153 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.153 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.154 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.160 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.161 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.161 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.164 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.165 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.165 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.166 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.166 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.167 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.167 |-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 
-2019-01-25 10:39:59.167 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:39:59.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:39:59.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:39:59.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:39:59.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:39:59.176 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:39:59.178 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:39:59.178 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:39:59.187 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.190 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.190 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.200 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.201 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.215 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.221 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.221 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:39:59.226 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:39:59.235 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:39:59.245 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.248 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.249 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.256 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.257 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.257 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.266 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.267 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.273 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.277 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.278 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.280 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:39:59.282 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:39:59.286 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:39:59.450 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.454 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:39:59.455 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:39:59.465 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:39:59.468 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:39:59.468 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.479 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:39:59.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:39:59.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:39:59.501 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:39:59.507 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:39:59.508 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:39:59.521 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:39:59.522 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:39:59.529 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:39:59.531 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:39:59.532 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:39:59.558 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:40:01.341 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.345 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.346 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.353 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.354 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.354 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.363 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.364 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.369 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.372 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.372 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.372 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.373 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.374 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.374 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.374 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.376 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.376 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.376 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.378 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.378 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.381 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.381 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:40:01.382 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.382 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:01.384 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.384 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.385 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.385 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.385 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.385 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.386 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.386 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.386 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:01.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:40:01.389 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:40:01.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.391 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.395 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.397 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.399 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.399 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.400 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.400 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.400 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.401 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.402 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.403 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.405 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.407 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.407 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.409 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.409 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.410 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.411 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.411 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.412 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.413 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.414 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.414 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.416 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:40:01.416 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_sys_users WHERE id = ? 
-2019-01-25 10:40:01.417 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:40:01.417 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2645(Integer)
-2019-01-25 10:40:01.419 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:40:01.420 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:40:01.420 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 482(String)
-2019-01-25 10:40:01.420 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:01.425 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:40:01.430 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:40:01.430 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:01.430 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:01.441 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:01.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:01.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:01.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:01.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.464 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:40:01.466 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:01.466 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:40:01.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:01.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:01.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:01.476 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:01.476 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:01.479 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:01.481 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:01.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:40:01.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:40:01.494 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:40:05.515 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.516 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.518 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.518 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.520 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.521 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.524 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.524 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.524 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.525 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.525 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.530 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.532 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.532 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.534 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.534 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.534 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.535 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.540 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.541 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.546 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.547 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.548 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.549 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.549 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.550 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.550 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.550 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.551 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.551 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.553 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.558 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.558 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.558 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.558 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:40:05.560 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:40:05.561 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.561 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:40:05.566 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:40:05.566 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:40:05.572 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.573 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.573 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.573 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.573 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.574 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:40:05.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:40:05.580 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:40:05.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:40:05.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:40:05.587 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:40:05.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:40:05.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.649 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.649 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.649 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.653 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.653 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.656 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.656 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.657 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.657 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.659 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.663 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.667 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.668 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.668 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.673 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.676 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.677 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.678 |-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 
-2019-01-25 10:40:05.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:40:05.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.679 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.682 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.683 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.684 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:40:05.684 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:40:05.685 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.685 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:40:05.688 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.689 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.690 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:40:05.690 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:40:05.692 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:40:05.695 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:40:05.700 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.703 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.703 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.718 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.719 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.719 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.726 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.732 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.736 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.736 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.740 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:40:05.740 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:40:05.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:40:05.757 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.760 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.781 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.791 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.792 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:40:05.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:40:05.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:40:05.905 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.911 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:05.912 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:05.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:05.919 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:05.920 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.928 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:05.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:05.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:05.935 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:05.938 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:05.939 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:05.951 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:40:05.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:40:05.958 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:40:05.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:40:05.959 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:40:05.968 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:40:07.355 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.362 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.363 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.369 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.370 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.380 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.382 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.383 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.383 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.383 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.383 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.387 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.387 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.390 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.390 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.390 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.391 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.391 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.397 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.397 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.397 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.398 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.398 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.399 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.400 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.401 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:40:07.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:07.409 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.409 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.410 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.412 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.413 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.413 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.413 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.414 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.414 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.416 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.417 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:07.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:40:07.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.418 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:40:07.420 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.421 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.421 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.422 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_br_layer_webcam WHERE DEVICE_ID = ? LIMIT 1 
-2019-01-25 10:40:07.424 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| ==> Parameters: 482(String)
-2019-01-25 10:40:07.425 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.427 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.427 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.427 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.428 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.429 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:40:07.433 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==>  Preparing: SELECT * FROM t_sys_users WHERE id = ? 
-2019-01-25 10:40:07.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:40:07.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:07.434 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.WebcamDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:07.434 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| ==> Parameters: 2645(Integer)
-2019-01-25 10:40:07.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:40:07.442 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:40:07.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:40:07.444 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:07.453 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:40:07.456 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:40:07.465 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:40:07.465 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:40:07.466 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.474 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:40:07.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:40:07.475 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:40:07.485 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:40:07.486 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:40:07.486 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:40:07.486 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:40:07.489 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:40:07.490 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:40:07.493 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:40:07.494 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:40:07.495 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:40:07.504 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:45:43.023 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.023 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.024 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.028 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.032 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.041 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.041 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.047 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.051 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.051 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.051 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.061 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.061 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.065 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.066 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.071 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.072 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.072 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.074 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.076 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.080 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.081 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.081 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.082 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.083 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.084 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.086 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.087 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.093 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:45:43.093 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:45:43.095 |-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 
-2019-01-25 10:45:43.096 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:45:43.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:45:43.104 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:45:43.105 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.105 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.115 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.165 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.166 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.166 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.170 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.173 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.178 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.179 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.179 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.181 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.181 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.182 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.182 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.182 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.182 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.187 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.188 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.188 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.192 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.192 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.193 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.193 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.199 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.200 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.200 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.201 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.202 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:45:43.203 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:45:43.203 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.204 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.204 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:45:43.205 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:45:43.205 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.206 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:45:43.207 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:45:43.208 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:45:43.212 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:45:43.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:45:43.223 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.227 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.233 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.233 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.233 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.242 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.249 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.252 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.253 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.257 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:45:43.258 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:45:43.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:45:43.277 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.280 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.281 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.289 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.303 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.309 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.313 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.313 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.316 |-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=? 
-2019-01-25 10:45:43.316 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:45:43.323 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:45:43.423 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.429 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:43.429 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:43.438 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:43.438 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:43.439 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.447 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:43.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:43.448 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:43.455 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:43.460 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:43.462 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:43.479 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:45:43.480 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:45:43.487 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:45:43.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:45:43.488 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:45:43.497 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:45:45.019 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:45.025 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:45:45.025 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:45:45.027 |-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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 10:45:45.027 |-ERROR [http-nio-8089-exec-2] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 10:45:45.033 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:45:45.033 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:45:45.034 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:45.043 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:45:45.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:45:45.044 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:45:45.050 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:45:45.054 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:45:45.055 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:45:45.064 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:45:45.064 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:45:45.071 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:45:45.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:45:45.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:45:45.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:45:45.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:45:45.125 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:45:45.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:46:21.103 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.104 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.110 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.111 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.111 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.111 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.112 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.115 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.115 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.117 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.118 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.120 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.120 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.121 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.121 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.121 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.121 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.122 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.122 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.126 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.127 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.128 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.129 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.130 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.131 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.131 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.132 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.132 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.133 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.136 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.136 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.138 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.140 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.141 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.141 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.142 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.142 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.144 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.145 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.145 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.146 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.146 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.146 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.147 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.147 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:46:21.147 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:46:21.152 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.152 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.153 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.154 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.156 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:46:21.156 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:46:21.157 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.157 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:46:21.157 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.159 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.160 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.162 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.163 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:46:21.164 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:46:21.165 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:46:21.167 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.168 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.173 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:46:21.174 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:46:21.175 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:46:21.184 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:46:21.185 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.185 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.195 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.242 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.244 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.244 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.245 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.247 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.248 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.251 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.253 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.254 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.254 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.255 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.265 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.265 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.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=?) 
-2019-01-25 10:46:21.266 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.267 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.273 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.273 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.276 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.277 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.278 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.279 |-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 
-2019-01-25 10:46:21.279 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:46:21.280 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.280 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.280 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.281 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.281 |-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 
-2019-01-25 10:46:21.281 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:46:21.282 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:46:21.282 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:46:21.287 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:46:21.295 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:46:21.296 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:46:21.315 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.320 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.327 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.327 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.338 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.343 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.348 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.348 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.351 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:46:21.352 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:46:21.361 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:46:21.371 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.374 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.375 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.382 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.383 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.383 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.396 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.396 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.396 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.402 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.405 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.407 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.410 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:46:21.410 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:46:21.415 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:46:21.565 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.569 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:21.570 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:21.577 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:21.578 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:21.578 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.588 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:21.588 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:21.589 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:21.596 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:21.600 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:21.601 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:21.613 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:46:21.614 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:46:21.625 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:46:21.627 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:46:21.628 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:46:21.637 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:46:22.643 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:22.648 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:22.656 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:22.658 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:22.658 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.667 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:22.668 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:22.669 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.675 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:22.680 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:22.681 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.681 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.682 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.686 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:22.687 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:22.688 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:22.688 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:46:22.688 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:22.688 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:22.693 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:22.694 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:22.694 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.695 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:22.695 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:46:22.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:22.696 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:46:22.696 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.697 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:46:22.704 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:22.706 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:22.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:22.707 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.708 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:22.709 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:22.714 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:22.716 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:22.720 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:22.720 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.722 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:22.724 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:22.724 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:46:22.725 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:46:22.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:46:22.728 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:22.734 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:46:22.740 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:46:22.767 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:46:22.768 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:46:22.769 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:22.777 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:46:26.189 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.192 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.192 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.192 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.194 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.195 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.197 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.198 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.197 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.198 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.198 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.202 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.203 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.207 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.207 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.207 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.208 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.209 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.209 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.209 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.210 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.210 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.210 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.213 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.214 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.218 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.218 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.219 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.221 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.223 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.223 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.223 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.224 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.224 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.225 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.225 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.225 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.225 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.228 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.230 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.231 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.233 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.234 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.234 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.237 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.238 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.239 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.239 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.239 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.239 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.241 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:46:26.241 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.241 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:46:26.242 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.245 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:46:26.245 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:46:26.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.250 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:46:26.251 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:46:26.251 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:46:26.253 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.254 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.256 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:46:26.257 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.257 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.260 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:46:26.263 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:46:26.264 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:46:26.270 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:46:26.271 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.323 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.327 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.327 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.327 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.327 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.337 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.338 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.342 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.343 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.343 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.345 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.345 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.346 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.346 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.346 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.347 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.353 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.354 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.354 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.358 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.359 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.363 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.363 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.364 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.364 |-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 
-2019-01-25 10:46:26.365 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:46:26.367 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.367 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.367 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.368 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.369 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:46:26.369 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:46:26.369 |-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 
-2019-01-25 10:46:26.370 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:46:26.373 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:46:26.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:46:26.379 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:46:26.392 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.399 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.407 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.408 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.408 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.420 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.420 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.421 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.427 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.437 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.437 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.441 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:46:26.442 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:46:26.451 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:46:26.459 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.463 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.468 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.469 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.478 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.479 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.479 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.483 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.489 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.490 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.493 |-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=? 
-2019-01-25 10:46:26.493 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:46:26.498 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:46:26.603 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.610 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:26.611 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:26.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:26.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:26.618 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.628 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:26.629 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:26.629 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:26.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:26.640 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:26.642 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:26.654 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:46:26.655 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:46:26.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:46:26.665 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:46:26.666 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:46:26.674 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:46:29.032 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.036 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:29.036 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:29.043 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:29.044 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:29.044 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.050 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.051 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.054 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:29.055 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:29.055 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:29.056 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.056 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:29.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:46:29.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:46:29.063 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:29.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:29.064 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.067 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:29.067 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:46:29.068 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:46:29.068 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.071 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:29.072 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.073 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:29.074 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:29.074 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:46:29.075 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:46:29.077 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:46:29.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:46:29.077 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:29.080 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:29.081 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:46:29.083 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:46:29.084 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:46:29.085 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:46:29.085 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:29.085 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:46:29.087 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.087 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:46:29.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:46:29.092 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:46:29.098 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:46:29.099 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:29.105 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:46:29.108 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:46:29.144 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:46:29.145 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:46:29.145 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:46:29.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:48:37.272 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.272 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.275 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.275 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.276 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.298 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.298 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.298 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.298 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.299 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.299 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.299 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.299 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.307 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.308 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.308 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.308 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.312 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.313 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.314 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.322 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.322 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.322 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.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=?) 
-2019-01-25 10:48:37.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.323 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.323 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.324 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.325 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.328 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.328 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.328 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.331 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.332 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.332 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.333 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.333 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.333 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.334 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.335 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:48:37.335 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:48:37.336 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.337 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.339 |-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 
-2019-01-25 10:48:37.339 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:48:37.341 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:48:37.341 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:48:37.342 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:48:37.350 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:48:37.351 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:48:37.351 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.352 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.360 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.414 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.414 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.415 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.419 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.419 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.421 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.421 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.425 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.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 
-2019-01-25 10:48:37.426 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.428 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.429 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.430 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.433 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.438 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.438 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.438 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.442 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.446 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.446 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.447 |-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 
-2019-01-25 10:48:37.447 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:48:37.448 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.451 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.452 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.453 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:48:37.453 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:48:37.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:48:37.458 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.460 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.460 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:48:37.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:48:37.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:48:37.465 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:48:37.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.477 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.477 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.487 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.494 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.498 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.498 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:48:37.502 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:48:37.513 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:48:37.522 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.525 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.526 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.531 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.532 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.533 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.548 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.551 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.552 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.556 |-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=? 
-2019-01-25 10:48:37.556 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:48:37.561 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:48:37.654 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.658 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:37.659 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:37.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:37.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:37.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.674 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:37.675 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:37.675 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:37.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:37.685 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:37.686 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:37.697 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:48:37.698 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:48:37.703 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:48:37.704 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:48:37.705 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:48:37.714 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:48:38.794 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.799 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:38.799 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:38.806 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:38.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:38.807 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.817 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:38.818 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:38.818 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.824 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:38.829 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:38.830 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.837 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:48:38.837 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:48:38.840 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.842 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.846 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:48:38.847 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:48:38.847 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:38.847 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:48:38.848 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:48:38.848 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:38.848 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:48:38.856 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:38.856 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:48:38.857 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:38.857 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:48:38.857 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.857 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.865 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:38.867 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:38.867 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.869 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:48:38.869 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:48:38.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:48:38.873 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:38.876 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:48:38.877 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:38.878 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.882 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:48:38.883 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:48:38.883 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:48:38.883 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:48:38.886 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:48:38.886 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:48:38.890 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:48:38.893 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:48:38.898 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:48:38.900 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:48:38.900 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:48:38.906 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:48:39.276 |-ERROR [http-nio-8089-exec-6] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 10:49:29.721 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.722 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.725 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.725 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.729 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.729 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.729 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.729 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.733 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.733 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.733 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.734 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.739 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.740 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.741 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.742 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.743 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.743 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.743 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.744 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.744 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.745 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.754 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.755 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.755 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.757 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.757 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.758 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.758 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.758 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.759 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.761 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.762 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.763 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.769 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.769 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.769 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.770 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:49:29.773 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:49:29.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:49:29.775 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:49:29.777 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.777 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.778 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.778 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.782 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:49:29.783 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:49:29.785 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:49:29.786 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:49:29.792 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.793 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.795 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:49:29.803 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:49:29.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:49:29.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:49:29.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.822 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.874 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.876 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.876 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.878 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.878 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.881 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.881 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.882 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.883 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.886 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.887 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.888 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.888 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.889 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.889 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.893 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.899 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.899 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.900 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.900 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.900 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.901 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.901 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.907 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.910 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.910 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.912 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.913 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.914 |-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 
-2019-01-25 10:49:29.915 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:49:29.918 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.918 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.919 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.919 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.922 |-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 
-2019-01-25 10:49:29.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:49:29.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:49:29.922 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:49:29.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:49:29.930 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:49:29.934 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:49:29.938 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.954 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:29.955 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:29.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:29.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:29.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.977 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:29.977 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:29.977 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:29.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:29.986 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:29.986 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:29.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:49:29.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:49:30.003 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:49:30.011 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:30.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:30.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:30.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:30.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:30.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:30.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:30.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:30.039 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:30.041 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:30.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:49:30.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:49:30.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:49:30.184 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:30.188 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:30.189 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:30.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:30.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:30.196 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:30.213 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:30.213 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:30.213 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:30.218 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:30.221 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:30.223 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:30.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:49:30.235 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:49:30.241 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:49:30.244 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:49:30.245 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:49:30.252 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:49:32.923 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:32.928 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:32.928 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:32.935 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:32.936 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:32.937 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:32.945 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:32.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:32.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:32.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:32.961 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:32.962 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:32.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:49:32.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:49:32.976 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:32.977 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:32.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:49:32.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:49:32.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:49:32.983 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:32.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:49:32.983 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:32.983 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:49:32.989 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:32.990 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:49:32.990 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:32.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:32.991 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:49:32.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:32.999 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:33.000 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:33.000 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:33.000 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:49:33.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:49:33.001 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:49:33.006 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:33.006 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:49:33.012 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:33.012 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:49:33.013 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:33.013 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:49:33.015 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:49:33.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:49:33.016 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:49:33.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:49:33.024 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:49:33.024 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:49:33.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:49:33.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:49:33.042 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:49:33.048 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:50:50.555 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.555 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.559 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.562 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.563 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.567 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.568 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.571 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.572 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.575 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.581 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.581 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.582 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.588 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.588 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.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=?) 
-2019-01-25 10:50:50.589 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.593 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.593 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.597 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.598 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.598 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.598 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.600 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.605 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.605 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.605 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.605 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.606 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.607 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:50:50.607 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:50:50.608 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.609 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.610 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.613 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:50:50.614 |-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 
-2019-01-25 10:50:50.615 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:50:50.617 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.618 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.620 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.621 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.621 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.625 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.626 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:50:50.626 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:50:50.627 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:50:50.627 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.632 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:50:50.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=?) 
-2019-01-25 10:50:50.633 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.636 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.639 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.644 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.645 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.651 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:50:50.652 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:50:50.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:50:50.689 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.691 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.691 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.693 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.693 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.695 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.695 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.695 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.695 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.702 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.705 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.705 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.705 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.705 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.705 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.711 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.711 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.714 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.714 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.715 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.715 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.715 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.717 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.719 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.721 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.721 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.722 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.722 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:50:50.723 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:50:50.723 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.724 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.724 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:50:50.725 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:50:50.725 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.726 |-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 
-2019-01-25 10:50:50.727 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:50:50.730 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:50:50.732 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:50:50.735 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:50:50.743 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.754 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.754 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.774 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.775 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:50:50.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:50:50.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:50:50.799 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.803 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:50.803 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:50.810 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:50.812 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:50.812 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.819 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:50.820 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:50.820 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:50.826 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:50.830 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:50.831 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:50.836 |-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=? 
-2019-01-25 10:50:50.837 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:50:50.844 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:50:51.014 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:51.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:51.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:51.026 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:51.027 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:51.027 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:51.035 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:51.036 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:51.037 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:51.043 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:51.047 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:51.048 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:51.060 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:50:51.060 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:50:51.065 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:50:51.067 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:50:51.068 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:50:51.075 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:50:52.068 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.072 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:52.073 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:52.079 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:52.080 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:52.080 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:52.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:52.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.094 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:52.098 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:52.099 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:50:52.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:50:52.112 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.113 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.115 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:50:52.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:50:52.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:50:52.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:52.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:52.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:50:52.118 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:50:52.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:52.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:52.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.127 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:50:52.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:50:52.128 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.136 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:52.137 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:50:52.137 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.147 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:52.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:50:52.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=?) 
-2019-01-25 10:50:52.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:50:52.153 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:52.154 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:50:52.157 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:50:52.158 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:50:52.158 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:50:52.159 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:50:52.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:50:52.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:50:52.167 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:50:52.172 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:50:52.173 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:50:52.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:50:52.174 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:50:52.181 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:51:19.549 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.551 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.551 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.551 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.551 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.555 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.555 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.556 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.558 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.558 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.559 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.559 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.564 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.565 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.570 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.570 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.571 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.571 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.571 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.572 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.573 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.573 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.574 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.574 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.577 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.580 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.582 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.583 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.583 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.584 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.584 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.584 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.586 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.586 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.586 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.588 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.588 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.589 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.590 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.590 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:51:19.592 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.592 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:51:19.593 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.593 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:51:19.599 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:51:19.599 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.599 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:51:19.600 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:51:19.600 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.601 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:51:19.602 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.606 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:51:19.607 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:51:19.611 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.611 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.612 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.612 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.619 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:51:19.619 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:51:19.620 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.627 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:51:19.672 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.673 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.674 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.678 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.688 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.688 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.688 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.689 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.690 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.690 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.700 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.700 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.700 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.701 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.701 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.701 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.702 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.707 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.708 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.708 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.711 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.712 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.712 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.713 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.713 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.713 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:51:19.713 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:51:19.713 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:51:19.714 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:51:19.714 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.715 |-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 
-2019-01-25 10:51:19.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:51:19.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:51:19.720 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:51:19.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:51:19.732 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.736 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.737 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.743 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.743 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.743 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.751 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.752 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.752 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.757 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.760 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.761 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.764 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:51:19.764 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:51:19.774 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:51:19.783 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.788 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.788 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.796 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.797 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.805 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.806 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.806 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.812 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.816 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.817 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:51:19.820 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:51:19.825 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:51:19.966 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:19.970 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:19.971 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:19.977 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:19.978 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:19.978 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.984 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:19.985 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:19.985 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:19.991 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:19.995 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:19.995 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:20.008 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:51:20.009 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:51:20.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:51:20.015 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:51:20.016 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:51:20.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:51:20.969 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:20.974 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:20.975 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:20.981 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:20.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:20.982 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:20.991 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:20.992 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:20.992 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:20.997 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:21.001 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:21.002 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:21.010 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:51:21.011 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:51:21.019 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:21.019 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:51:21.020 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:51:21.020 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:21.021 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:51:21.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:21.025 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:21.026 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:51:21.027 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:51:21.033 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:21.033 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:51:21.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:51:21.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 
-2019-01-25 10:51:21.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:21.035 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:21.044 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:21.044 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:21.045 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:21.045 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:51:21.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:51:21.046 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:51:21.052 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:21.052 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:51:21.057 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:21.057 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:51:21.058 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:21.058 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:51:21.061 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:51:21.061 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:51:21.062 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:51:21.062 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:51:21.068 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:51:21.071 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:51:21.086 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:51:21.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:51:21.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:51:21.094 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:52:34.975 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:34.976 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:34.977 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:34.982 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:34.988 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:34.993 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:34.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:34.994 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:34.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:34.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:34.998 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:34.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:34.998 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.000 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.001 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.001 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.004 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.009 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.011 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.012 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.014 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.014 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.017 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.017 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.018 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.021 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.022 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.022 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.024 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.024 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.024 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.024 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.025 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.025 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.029 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.029 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.030 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.030 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.032 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:52:35.032 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:52:35.033 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.033 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.034 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.034 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.034 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.034 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.035 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.035 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.041 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.041 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.041 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:52:35.042 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.045 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:52:35.046 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:52:35.047 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.051 |-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 
-2019-01-25 10:52:35.051 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:52:35.052 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:52:35.053 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:52:35.057 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:52:35.060 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:52:35.061 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.062 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.062 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:52:35.069 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.123 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.124 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.124 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.126 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.126 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.132 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.133 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.133 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.137 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.143 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.144 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.144 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.147 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.151 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.152 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.156 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.157 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.157 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.157 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.157 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.158 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:52:35.158 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:52:35.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:52:35.158 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:52:35.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:52:35.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:52:35.168 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:52:35.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:52:35.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:52:35.189 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.192 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.201 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.202 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.202 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.211 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.212 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.217 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.221 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.221 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:52:35.225 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:52:35.234 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:52:35.248 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.252 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.260 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.269 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.270 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.276 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.280 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.281 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.284 |-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=? 
-2019-01-25 10:52:35.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:52:35.291 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:52:35.427 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.431 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:35.432 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:35.439 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:35.441 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:35.442 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:35.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:35.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:35.455 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:35.459 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:35.460 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:35.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:52:35.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:52:35.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:52:35.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:52:35.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:52:35.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:52:36.461 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:36.466 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:36.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:36.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:36.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:36.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:36.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:36.494 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:36.495 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:52:36.502 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:52:36.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:52:36.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:52:36.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:52:36.512 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.513 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:36.516 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:36.520 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:52:36.520 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:52:36.528 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:36.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:52:36.529 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:36.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:52:36.529 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:36.540 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:52:36.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:36.541 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:52:36.541 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.542 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:52:36.547 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:36.548 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:52:36.551 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:36.552 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.556 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:52:36.556 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:52:36.559 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:52:36.561 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:52:36.568 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:52:36.568 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:52:36.568 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:52:36.571 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:52:36.572 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:52:36.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:52:36.576 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:52:36.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:54:31.968 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:31.968 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:31.970 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:31.972 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:31.973 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:31.989 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:31.989 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:31.990 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:31.990 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:31.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:31.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:31.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:31.991 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:31.994 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:31.994 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:31.996 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:31.996 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:31.996 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:31.998 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.002 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.002 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.002 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.002 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.003 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.003 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.004 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.004 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.013 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.014 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.016 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.017 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.017 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.017 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.017 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.018 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.019 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.024 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.024 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.026 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.027 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.027 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:54:32.031 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:54:32.032 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.032 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.033 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.034 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.034 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.034 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.035 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.035 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.035 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:54:32.036 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:54:32.039 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:54:32.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:54:32.040 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:54:32.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:54:32.045 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:54:32.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:54:32.047 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:54:32.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:54:32.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.056 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.119 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.120 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.121 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.123 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.127 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.127 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.127 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.128 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.130 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.130 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.130 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.133 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.134 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.135 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.135 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.136 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.138 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.139 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.139 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.143 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.144 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.144 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.145 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.147 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.150 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.151 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.151 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.152 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:54:32.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:54:32.154 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.155 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.155 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.156 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:54:32.156 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.156 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:54:32.157 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:54:32.157 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:54:32.161 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:54:32.162 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:54:32.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:54:32.173 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.177 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.178 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.186 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.194 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.195 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.195 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.200 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.204 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.204 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.208 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:54:32.208 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:54:32.218 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:54:32.226 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.237 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.256 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.256 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 10:54:32.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:54:32.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:54:32.427 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.433 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:32.433 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:32.441 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:32.441 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:32.442 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.450 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:32.451 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:32.451 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:32.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:32.461 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:32.462 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:32.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:54:32.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:54:32.479 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:54:32.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:54:32.481 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:54:32.489 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:54:33.477 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.481 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:33.482 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:33.490 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:33.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 
-2019-01-25 10:54:33.491 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.500 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:33.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:33.501 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.508 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:33.513 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:33.514 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.521 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:54:33.521 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:54:33.522 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.523 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:33.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:33.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:54:33.527 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:54:33.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:54:33.529 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:54:33.530 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:54:33.532 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:33.533 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:33.534 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.534 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:54:33.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:54:33.535 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.542 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:33.542 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:33.543 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:54:33.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:54:33.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:54:33.549 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:33.550 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:54:33.555 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:33.556 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:54:33.556 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.556 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:54:33.559 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:54:33.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:54:33.560 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:54:33.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:54:33.567 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:54:33.567 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:54:33.591 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:54:33.591 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:54:33.592 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:54:33.598 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:55:05.950 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:05.956 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:05.957 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:05.958 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:05.958 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:05.965 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:05.966 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:05.966 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:05.966 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:05.967 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:05.967 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:05.968 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.974 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:05.974 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:05.977 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:05.977 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:05.978 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.979 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.984 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:05.986 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:05.987 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.991 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:05.992 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:05.992 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:05.993 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:05.994 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.993 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:05.994 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:05.999 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.000 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.001 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.006 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.007 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.007 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.009 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.010 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.010 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.012 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.013 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:55:06.014 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.014 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:55:06.014 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.014 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.018 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.019 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.020 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.022 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:55:06.026 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.027 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:55:06.027 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.028 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:55:06.038 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:55:06.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.039 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.039 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.040 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.040 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.048 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.048 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.055 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.057 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.061 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.063 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.068 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:55:06.070 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:55:06.074 |-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 
-2019-01-25 10:55:06.075 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:55:06.077 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:55:06.084 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:55:06.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.087 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.096 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.169 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.169 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.170 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.172 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.172 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.176 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.176 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.184 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.184 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.186 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.186 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.186 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.187 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.194 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.194 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.195 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.197 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.197 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.197 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.199 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.203 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.203 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.203 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.204 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.205 |-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 
-2019-01-25 10:55:06.206 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:55:06.208 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.208 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.209 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.209 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:55:06.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:55:06.210 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:55:06.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:55:06.214 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:55:06.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:55:06.217 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:55:06.225 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.228 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.228 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.236 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.237 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.255 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.256 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.262 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.265 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.266 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:55:06.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:55:06.281 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:55:06.288 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.293 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.301 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.302 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.313 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.314 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.314 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.319 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.323 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.324 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.326 |-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=? 
-2019-01-25 10:55:06.326 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:55:06.333 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:55:06.474 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:06.479 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:06.488 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:06.489 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:06.490 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:06.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:06.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:06.504 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:06.510 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:06.511 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:06.523 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:55:06.523 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:55:06.529 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:55:06.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:55:06.530 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:55:06.539 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:55:08.061 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.066 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:08.066 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:08.074 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:08.075 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:08.076 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.083 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:08.085 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:08.085 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.090 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:08.094 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:08.095 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.101 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:55:08.102 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:55:08.108 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:55:08.109 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:55:08.110 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:55:08.111 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.114 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.117 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:08.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:08.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:55:08.122 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:55:08.124 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:08.124 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:08.125 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.128 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:55:08.129 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:55:08.129 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.134 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:08.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:08.135 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.138 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:55:08.139 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:55:08.139 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:55:08.143 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:08.145 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:55:08.147 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:08.148 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.149 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:55:08.149 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:55:08.151 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:55:08.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:55:08.152 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:55:08.153 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:55:08.156 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:55:08.158 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:55:08.159 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:55:08.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:55:08.160 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:55:08.166 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:56:06.469 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.469 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.471 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.471 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.476 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.477 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.477 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.479 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.487 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.488 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.488 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.489 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.489 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.490 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.491 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.491 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.492 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.493 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.499 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.499 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.504 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.504 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.504 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.505 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.507 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.508 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.508 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.508 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.508 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.508 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.510 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.510 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.513 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.514 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.514 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.514 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.514 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.516 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.520 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.520 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.520 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.521 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.521 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.522 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:56:06.522 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.523 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:56:06.523 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.523 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.523 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.524 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.526 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.527 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.527 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.528 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:56:06.528 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.531 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:56:06.532 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:56:06.532 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.534 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.535 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:56:06.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:56:06.538 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:56:06.540 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:56:06.541 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:56:06.543 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:56:06.550 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:56:06.551 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.552 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.562 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.616 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.616 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.618 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.622 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.622 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.623 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.623 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.629 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.629 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.630 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.630 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.635 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.635 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.636 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.638 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.639 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.641 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.643 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.643 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.651 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.651 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.652 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.652 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.653 |-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 
-2019-01-25 10:56:06.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:56:06.653 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:56:06.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:56:06.658 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:56:06.664 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:56:06.666 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.667 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:56:06.669 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:56:06.672 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.676 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:56:06.677 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.678 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.693 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.703 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.704 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.704 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.711 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.715 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.716 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.720 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:56:06.721 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:56:06.732 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:56:06.741 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.744 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.745 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.751 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.752 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.759 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.760 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.760 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.764 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.768 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.768 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.771 |-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=? 
-2019-01-25 10:56:06.771 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:56:06.780 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:56:06.939 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:06.946 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:06.952 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:06.953 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:06.953 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.962 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:06.962 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:06.963 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:06.970 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:06.975 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:06.977 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:06.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:56:06.987 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:56:06.993 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:56:06.994 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:56:06.995 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:56:07.002 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:56:08.364 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.367 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:08.368 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:08.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:08.377 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:08.378 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:08.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:08.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:08.401 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:08.401 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:56:08.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:56:08.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:56:08.416 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:56:08.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:56:08.417 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.421 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:08.422 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:08.422 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:56:08.423 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:56:08.430 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:08.430 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:56:08.431 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:08.431 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:56:08.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.441 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:08.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:08.443 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:56:08.443 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.444 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:56:08.445 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:56:08.450 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:08.450 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:56:08.455 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:08.455 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:56:08.456 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.456 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:56:08.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:56:08.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:56:08.466 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:56:08.466 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:56:08.466 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:56:08.466 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:56:08.467 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:56:08.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:56:08.473 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 10:56:08.473 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:57:11.125 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.126 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.128 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.129 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.130 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.137 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.137 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.140 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.140 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.141 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.141 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.149 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.149 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.149 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.152 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.154 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.156 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.159 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.160 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.160 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.165 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.167 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.167 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.170 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.171 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.171 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.172 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.173 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.177 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.177 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.178 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.178 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.178 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.178 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.180 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.180 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.181 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.181 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 10:57:11.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 10:57:11.185 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.186 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.188 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 10:57:11.189 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 10:57:11.190 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.190 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:57:11.194 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 10:57:11.194 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 10:57:11.197 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 10:57:11.201 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.202 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.206 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 10:57:11.206 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 10:57:11.207 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 10:57:11.220 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 10:57:11.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 
-2019-01-25 10:57:11.221 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.229 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.278 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.280 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.280 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.283 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.285 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.285 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.285 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.290 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.291 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.291 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.292 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.292 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.293 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.293 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.293 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.293 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.300 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.301 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.301 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.304 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.304 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.305 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.305 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.305 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.309 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.312 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.317 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.317 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.319 |-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 
-2019-01-25 10:57:11.319 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 10:57:11.319 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.320 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 10:57:11.321 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 10:57:11.322 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.322 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.323 |-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 
-2019-01-25 10:57:11.323 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 10:57:11.326 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 10:57:11.328 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 10:57:11.334 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 10:57:11.343 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.347 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.347 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.355 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.355 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.355 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.375 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.376 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 10:57:11.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 10:57:11.389 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 10:57:11.398 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.406 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.414 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.414 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.414 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.425 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.426 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.427 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.438 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.438 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.442 |-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=? 
-2019-01-25 10:57:11.442 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 10:57:11.449 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 10:57:11.617 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.623 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:11.624 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:11.630 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:11.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:11.631 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.641 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:11.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:11.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:11.650 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:11.654 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:11.654 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:11.667 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 10:57:11.667 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 10:57:11.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 10:57:11.672 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 10:57:11.673 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 10:57:11.681 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 10:57:13.408 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:13.412 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:13.419 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:13.420 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:13.420 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.434 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:13.435 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:13.435 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.441 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:13.446 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:13.447 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.453 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:57:13.454 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:57:13.463 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:57:13.464 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 10:57:13.465 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 10:57:13.466 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.467 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.469 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:13.469 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:13.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 10:57:13.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 10:57:13.476 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:13.477 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:13.477 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 10:57:13.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 10:57:13.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.487 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:13.487 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:13.488 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.493 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:13.494 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 10:57:13.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 10:57:13.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 10:57:13.499 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:13.500 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 10:57:13.503 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 10:57:13.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 10:57:13.509 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 10:57:13.511 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 10:57:13.512 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 10:57:13.512 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 10:57:13.512 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:57:13.513 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 10:57:13.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 10:57:13.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 10:57:13.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 10:57:13.524 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:00:26.056 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.056 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.059 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.072 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.073 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.075 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.075 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.081 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.082 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.083 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.087 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.087 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.088 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.088 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.093 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.095 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.097 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.099 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.104 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.107 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.107 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.108 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.108 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.108 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.109 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.111 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.111 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 11:00:26.111 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.112 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 11:00:26.113 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.117 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.119 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:00:26.121 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.121 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.122 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.123 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.129 |-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 
-2019-01-25 11:00:26.130 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 11:00:26.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 11:00:26.130 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 11:00:26.135 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 11:00:26.141 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 11:00:26.142 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.143 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.151 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.202 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.203 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.204 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.205 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.207 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.208 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.212 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.212 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.213 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.213 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.214 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.214 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.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 
-2019-01-25 11:00:26.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.222 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.222 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.223 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.223 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.223 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.223 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.230 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.230 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.235 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.236 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.236 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.237 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.237 |-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 
-2019-01-25 11:00:26.238 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 11:00:26.238 |-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 
-2019-01-25 11:00:26.238 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 11:00:26.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.242 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.242 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.243 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 11:00:26.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:00:26.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 11:00:26.247 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 11:00:26.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 11:00:26.256 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.259 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.260 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.268 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.269 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.306 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.307 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.307 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.314 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.317 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.318 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.321 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 11:00:26.322 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 11:00:26.330 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 11:00:26.339 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.342 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.343 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.349 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.350 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.357 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.358 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.359 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.365 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.369 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.370 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.373 |-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=? 
-2019-01-25 11:00:26.373 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:00:26.379 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:00:26.531 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.536 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:26.537 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:26.544 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:26.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:26.545 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.553 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:26.554 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:26.555 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:26.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:26.565 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:26.565 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:26.575 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 11:00:26.576 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 11:00:26.582 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 11:00:26.583 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 11:00:26.583 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 11:00:26.592 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 11:00:28.059 |-ERROR [http-nio-8089-exec-7] 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:1149)
-	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
-	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
-	at java.lang.Thread.run(Thread.java:748)
-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: connect timed out
-	at redis.clients.jedis.Connection.connect(Connection.java:207)
-	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
-	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
-	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
-	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: connect timed out
-	at java.net.DualStackPlainSocketImpl.waitForConnect(Native Method)
-	at java.net.DualStackPlainSocketImpl.socketConnect(DualStackPlainSocketImpl.java:85)
-	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
-	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
-	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
-	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:172)
-	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
-	at java.net.Socket.connect(Socket.java:589)
-	at redis.clients.jedis.Connection.connect(Connection.java:184)
-	... 77 common frames omitted
-2019-01-25 11:00:28.486 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:28.491 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:28.498 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:28.498 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:28.499 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.507 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:28.507 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:28.507 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.512 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:28.516 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:28.517 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:00:28.523 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:00:28.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:00:28.530 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 11:00:28.531 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 11:00:28.532 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.533 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.538 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:28.538 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:00:28.539 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:28.539 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:00:28.545 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:28.546 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:00:28.546 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:28.547 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.547 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:00:28.547 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.555 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:28.556 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:28.557 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.559 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:00:28.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:00:28.560 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:00:28.563 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:28.565 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:00:28.568 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:28.569 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:00:28.569 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.571 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:00:28.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 11:00:28.575 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 11:00:28.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 11:00:28.578 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:00:28.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 11:00:28.584 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 11:00:28.585 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:00:28.585 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:00:28.586 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:00:28.595 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:01:20.459 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.460 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.462 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.462 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.464 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.465 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.468 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.469 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.469 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.469 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.470 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.474 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.475 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.475 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.478 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.478 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.485 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.485 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.485 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.488 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.489 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.490 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.491 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.492 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.492 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.492 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.493 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.493 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.494 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.498 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.500 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.500 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.500 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.500 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.505 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.506 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.508 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 11:01:20.508 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 11:01:20.509 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.509 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.509 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.510 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.510 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.514 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.515 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.515 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:01:20.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.518 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 11:01:20.519 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 11:01:20.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 11:01:20.522 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.522 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 11:01:20.523 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.525 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 11:01:20.529 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 11:01:20.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 11:01:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 11:01:20.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 11:01:20.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.602 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.603 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.604 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.605 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.606 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.607 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.609 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.610 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.611 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.613 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.613 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.614 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.615 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.616 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.617 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.618 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.624 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.624 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.625 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.625 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.626 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.626 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.628 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.629 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.630 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.632 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.634 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.634 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.635 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.636 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.636 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:01:20.636 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 11:01:20.636 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.637 |-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 
-2019-01-25 11:01:20.637 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.638 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 11:01:20.639 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.640 |-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 
-2019-01-25 11:01:20.640 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 11:01:20.643 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 11:01:20.643 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 11:01:20.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 11:01:20.671 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.674 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.675 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.680 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.695 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.698 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.699 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.702 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 11:01:20.703 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 11:01:20.713 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 11:01:20.722 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:20.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.752 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.753 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 11:01:20.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:01:20.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:01:20.901 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.906 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:20.907 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:20.912 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:20.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 
-2019-01-25 11:01:20.913 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.921 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:20.922 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:20.923 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:20.929 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:20.934 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:20.935 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:20.947 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 11:01:20.948 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 11:01:20.954 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 11:01:20.954 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 11:01:20.955 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 11:01:20.963 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 11:01:21.970 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:21.974 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:21.975 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:21.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:21.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 
-2019-01-25 11:01:21.991 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:21.998 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:21.999 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:22.000 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:22.005 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:22.008 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:22.009 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:22.015 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:01:22.016 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:01:22.017 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:22.018 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:22.021 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:01:22.021 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:22.021 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 11:01:22.022 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:22.022 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 11:01:22.023 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:01:22.024 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:01:22.028 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:22.028 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:01:22.029 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:22.030 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:01:22.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 
-2019-01-25 11:01:22.032 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:22.036 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:22.037 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:22.038 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:22.040 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:01:22.041 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:01:22.041 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:01:22.042 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:22.048 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:22.048 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:01:22.049 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:22.053 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:01:22.053 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 11:01:22.054 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:01:22.054 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 11:01:22.057 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 11:01:22.058 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:01:22.059 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 11:01:22.066 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:01:22.083 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 11:01:22.084 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:01:22.085 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:01:22.092 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:02:35.639 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.641 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.642 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.643 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.644 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.657 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.657 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.657 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.658 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.661 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.662 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.665 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.665 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.665 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.666 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.670 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.670 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.670 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.670 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.671 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.671 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.671 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.672 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.677 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.677 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.678 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.678 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.679 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.680 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.680 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.681 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.682 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.682 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.685 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.685 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.686 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.686 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.687 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.687 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.687 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.690 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.690 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.690 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.691 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.692 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.693 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.693 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 11:02:35.694 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 11:02:35.694 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.695 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.701 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.701 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:02:35.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.702 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 11:02:35.702 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.702 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.703 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 11:02:35.703 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 11:02:35.703 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.704 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 11:02:35.708 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.708 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 11:02:35.709 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 11:02:35.712 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.713 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.718 |-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 
-2019-01-25 11:02:35.718 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 11:02:35.729 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 11:02:35.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.730 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.738 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.790 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.791 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.792 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.796 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.796 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.796 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.797 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.798 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.799 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.808 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.808 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.808 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.808 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.808 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.809 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.809 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.809 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.809 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.816 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.817 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.818 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.818 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.819 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.819 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.819 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.822 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.824 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.824 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.826 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.827 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.827 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.827 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.828 |-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 
-2019-01-25 11:02:35.828 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 11:02:35.828 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:02:35.828 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.829 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 11:02:35.830 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.831 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:02:35.832 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 11:02:35.834 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 11:02:35.835 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 11:02:35.840 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 11:02:35.849 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.853 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.853 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.871 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.876 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.879 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.879 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.882 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 11:02:35.883 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 11:02:35.893 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 11:02:35.901 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.906 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:35.906 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:35.912 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:35.913 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:35.913 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.921 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:35.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:35.922 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:35.930 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:35.933 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:35.933 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:35.936 |-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=? 
-2019-01-25 11:02:35.936 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:02:35.942 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:02:36.109 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:36.115 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:36.116 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:36.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:36.125 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:36.125 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:36.134 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:36.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:36.136 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:36.141 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:36.144 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:36.146 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:36.159 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 11:02:36.160 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 11:02:36.167 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 11:02:36.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 11:02:36.168 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 11:02:36.176 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 11:02:37.434 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.438 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:37.439 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:37.446 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:37.447 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:37.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:37.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:37.457 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:37.468 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:37.469 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.475 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:02:37.476 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:02:37.485 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.485 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:02:37.486 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.486 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 11:02:37.487 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 11:02:37.497 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:37.497 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:02:37.497 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:37.498 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:02:37.505 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:37.505 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:02:37.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:37.506 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:02:37.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.506 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.516 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:37.517 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:37.518 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.518 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:02:37.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:02:37.519 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:02:37.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:37.529 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:37.530 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.531 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:02:37.534 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 11:02:37.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:02:37.536 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:02:37.537 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:02:37.544 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 11:02:37.545 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 11:02:37.548 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:02:37.555 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 11:02:37.584 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 11:02:37.585 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:02:37.585 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:02:37.593 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:45:48.718 |-INFO  [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on MSI with PID 2044 (D:\Visuallnspection_njy\VisualInspection_server\target\classes started by liwei in D:\Visuallnspection_njy\VisualInspection_server)
-2019-01-25 11:45:48.721 |-INFO  [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
-2019-01-25 11:45:48.937 |-INFO  [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
-2019-01-25 11:45:48.974 |-INFO  [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6bafbd0f: startup date [Fri Jan 25 11:45:48 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 11:45:50.817 |-INFO  [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
-2019-01-25 11:45:51.724 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$d2a32b34] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.871 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$6b50f36e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.884 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.888 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@76a1c8e2' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.897 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$90259620] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.915 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.932 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$bde69f30] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.956 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:51.958 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$1bb56152] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
-2019-01-25 11:45:52.547 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
-2019-01-25 11:45:52.557 |-INFO  [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
-2019-01-25 11:45:52.558 |-INFO  [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
-2019-01-25 11:45:52.699 |-INFO  [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
-2019-01-25 11:45:52.700 |-INFO  [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 3726 ms
-2019-01-25 11:45:53.117 |-INFO  [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
-2019-01-25 11:45:55.468 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
-2019-01-25 11:45:55.468 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
-2019-01-25 11:45:55.468 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
-2019-01-25 11:45:55.469 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
-2019-01-25 11:45:55.469 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
-2019-01-25 11:45:55.470 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
-2019-01-25 11:45:55.471 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
-2019-01-25 11:45:55.472 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
-2019-01-25 11:45:55.473 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
-2019-01-25 11:45:56.783 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 
-2019-01-25 11:45:56.793 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService  'threadExecutor'
-2019-01-25 11:45:57.010 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
-2019-01-25 11:45:57.011 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
-2019-01-25 11:45:57.146 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2e2bf2da, org.springframework.security.web.context.SecurityContextPersistenceFilter@438a8267, org.springframework.security.web.header.HeaderWriterFilter@7eee423f, org.springframework.web.filter.CorsFilter@1a2d0218, org.springframework.security.web.authentication.logout.LogoutFilter@644ba56c, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@1fe6ce43, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@21855370, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6212747f, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@1db89a16, org.springframework.security.web.session.SessionManagementFilter@2188b0c8, org.springframework.security.web.access.ExceptionTranslationFilter@5ea45e29, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@50b1dee0]
-2019-01-25 11:45:57.172 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@4e1a8182, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@32f7a8f4, org.springframework.security.web.context.SecurityContextPersistenceFilter@c247abd, org.springframework.security.web.header.HeaderWriterFilter@7da4e714, org.springframework.security.web.authentication.logout.LogoutFilter@1d7c132c, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@77f857c0, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@13bfc2bc, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@49f90b98, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@31d22658, org.springframework.security.web.session.SessionManagementFilter@27c60d24, org.springframework.security.web.access.ExceptionTranslationFilter@54e96da8, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@21e70853]
-2019-01-25 11:45:57.333 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6bafbd0f: startup date [Fri Jan 25 11:45:48 GMT+08:00 2019]; root of context hierarchy
-2019-01-25 11:45:57.458 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.459 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.460 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 11:45:57.461 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 11:45:57.461 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 11:45:57.462 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.462 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 11:45:57.462 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.462 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
-2019-01-25 11:45:57.467 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.467 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.467 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.468 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.468 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.468 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.468 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.469 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
-2019-01-25 11:45:57.469 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.469 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
-2019-01-25 11:45:57.470 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.470 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.470 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.470 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
-2019-01-25 11:45:57.471 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.471 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.471 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.471 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.471 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.472 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.473 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.473 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.473 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.473 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.474 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.476 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.477 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
-2019-01-25 11:45:57.477 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.478 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
-2019-01-25 11:45:57.478 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.478 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
-2019-01-25 11:45:57.479 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.480 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.480 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.480 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.480 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.481 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.481 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
-2019-01-25 11:45:57.483 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
-2019-01-25 11:45:57.484 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
-2019-01-25 11:45:57.484 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.484 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
-2019-01-25 11:45:57.485 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
-2019-01-25 11:45:57.485 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
-2019-01-25 11:45:57.485 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
-2019-01-25 11:45:57.486 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
-2019-01-25 11:45:57.486 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.486 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
-2019-01-25 11:45:57.486 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
-2019-01-25 11:45:57.487 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
-2019-01-25 11:45:57.488 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
-2019-01-25 11:45:57.488 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
-2019-01-25 11:45:57.488 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.490 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.490 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 11:45:57.490 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.491 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.491 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 11:45:57.491 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 11:45:57.491 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
-2019-01-25 11:45:57.492 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
-2019-01-25 11:45:57.492 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
-2019-01-25 11:45:57.492 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
-2019-01-25 11:45:57.493 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
-2019-01-25 11:45:57.494 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
-2019-01-25 11:45:57.494 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
-2019-01-25 11:45:57.494 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer)
-2019-01-25 11:45:57.494 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.495 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.496 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
-2019-01-25 11:45:57.497 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 11:45:57.497 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
-2019-01-25 11:45:57.497 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
-2019-01-25 11:45:57.498 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 11:45:57.498 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
-2019-01-25 11:45:57.498 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
-2019-01-25 11:45:57.498 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
-2019-01-25 11:45:57.500 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
-2019-01-25 11:45:57.501 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
-2019-01-25 11:45:57.501 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
-2019-01-25 11:45:57.501 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
-2019-01-25 11:45:57.501 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
-2019-01-25 11:45:57.502 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.502 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
-2019-01-25 11:45:57.503 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
-2019-01-25 11:45:57.503 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.504 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
-2019-01-25 11:45:57.504 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
-2019-01-25 11:45:57.506 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.506 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.506 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.506 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.506 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.507 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
-2019-01-25 11:45:57.507 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.507 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
-2019-01-25 11:45:57.510 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.510 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.510 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 11:45:57.510 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 11:45:57.511 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.512 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.512 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.512 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.512 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.512 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.513 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.513 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.513 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.513 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
-2019-01-25 11:45:57.514 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.514 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 11:45:57.514 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
-2019-01-25 11:45:57.514 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.515 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
-2019-01-25 11:45:57.515 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.516 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
-2019-01-25 11:45:57.516 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
-2019-01-25 11:45:57.516 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
-2019-01-25 11:45:57.518 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.519 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.519 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.519 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.520 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.521 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
-2019-01-25 11:45:57.521 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.521 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.522 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.522 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.522 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.523 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.523 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.524 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.525 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.525 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.525 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
-2019-01-25 11:45:57.526 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 11:45:57.527 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 11:45:57.527 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.527 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 11:45:57.527 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.528 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
-2019-01-25 11:45:57.528 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
-2019-01-25 11:45:57.528 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.528 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
-2019-01-25 11:45:57.529 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.529 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
-2019-01-25 11:45:57.530 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
-2019-01-25 11:45:57.530 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
-2019-01-25 11:45:57.530 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
-2019-01-25 11:45:57.530 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
-2019-01-25 11:45:57.531 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
-2019-01-25 11:45:57.531 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.531 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.532 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
-2019-01-25 11:45:57.532 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.532 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
-2019-01-25 11:45:57.532 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
-2019-01-25 11:45:57.533 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
-2019-01-25 11:45:57.533 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
-2019-01-25 11:45:57.533 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
-2019-01-25 11:45:57.533 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
-2019-01-25 11:45:57.534 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
-2019-01-25 11:45:57.534 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 11:45:57.534 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
-2019-01-25 11:45:57.535 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
-2019-01-25 11:45:57.536 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
-2019-01-25 11:45:57.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
-2019-01-25 11:45:57.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
-2019-01-25 11:45:57.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 11:45:57.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
-2019-01-25 11:45:57.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
-2019-01-25 11:45:57.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
-2019-01-25 11:45:57.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
-2019-01-25 11:45:57.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
-2019-01-25 11:45:57.539 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
-2019-01-25 11:45:57.539 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
-2019-01-25 11:45:57.540 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
-2019-01-25 11:45:57.540 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
-2019-01-25 11:45:57.540 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
-2019-01-25 11:45:57.635 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
-2019-01-25 11:45:57.710 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 11:45:57.710 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 11:45:57.761 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
-2019-01-25 11:45:57.762 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
-2019-01-25 11:45:57.762 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
-2019-01-25 11:45:57.763 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
-2019-01-25 11:45:57.763 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
-2019-01-25 11:45:57.763 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
-2019-01-25 11:45:57.764 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
-2019-01-25 11:45:57.764 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
-2019-01-25 11:45:57.764 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
-2019-01-25 11:45:57.765 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
-2019-01-25 11:45:57.765 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
-2019-01-25 11:45:57.766 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
-2019-01-25 11:45:57.766 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
-2019-01-25 11:45:57.766 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
-2019-01-25 11:45:57.767 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
-2019-01-25 11:45:57.767 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
-2019-01-25 11:45:57.768 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
-2019-01-25 11:45:57.770 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
-2019-01-25 11:45:57.771 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
-2019-01-25 11:45:57.772 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
-2019-01-25 11:45:57.773 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
-2019-01-25 11:45:57.774 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
-2019-01-25 11:45:57.774 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
-2019-01-25 11:45:57.774 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
-2019-01-25 11:45:57.848 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
-2019-01-25 11:45:58.635 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 11:45:58.637 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 11:45:58.637 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 11:45:59.599 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 11:45:59.605 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 11:45:59.606 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 11:45:59.607 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 11:45:59.608 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 11:45:59.609 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 11:45:59.610 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 11:45:59.610 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 11:45:59.612 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
-2019-01-25 11:45:59.613 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
-2019-01-25 11:45:59.614 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
-2019-01-25 11:45:59.614 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
-2019-01-25 11:45:59.614 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
-2019-01-25 11:45:59.614 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
-2019-01-25 11:45:59.615 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
-2019-01-25 11:45:59.625 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
-2019-01-25 11:45:59.625 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 11:45:59.625 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
-2019-01-25 11:45:59.626 |-INFO  [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
-2019-01-25 11:45:59.633 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
-2019-01-25 11:45:59.634 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
-2019-01-25 11:45:59.635 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
-2019-01-25 11:45:59.639 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
-2019-01-25 11:45:59.674 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
-2019-01-25 11:46:00.528 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
-2019-01-25 11:46:00.570 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
-2019-01-25 11:46:00.589 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
-2019-01-25 11:46:00.589 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
-2019-01-25 11:46:00.589 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
-2019-01-25 11:46:00.590 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
-2019-01-25 11:46:00.590 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
-2019-01-25 11:46:01.156 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
-2019-01-25 11:46:01.156 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.157 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.158 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
-2019-01-25 11:46:01.158 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
-2019-01-25 11:46:01.159 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.159 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.159 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.159 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.160 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
-2019-01-25 11:46:01.161 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
-2019-01-25 11:46:01.162 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.162 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.162 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.163 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
-2019-01-25 11:46:01.163 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
-2019-01-25 11:46:01.164 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
-2019-01-25 11:46:01.858 |-INFO  [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
-2019-01-25 11:46:01.870 |-WARN  [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
-2019-01-25 11:46:02.123 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 11:46:02.124 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
-2019-01-25 11:46:02.124 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
-2019-01-25 11:46:02.134 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
-2019-01-25 11:46:02.137 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
-2019-01-25 11:46:02.137 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
-2019-01-25 11:46:02.141 |-INFO  [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
-2019-01-25 11:46:02.143 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
-2019-01-25 11:46:02.162 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
-2019-01-25 11:46:02.174 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
-2019-01-25 11:46:02.179 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
-2019-01-25 11:46:02.182 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
-2019-01-25 11:46:02.184 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
-2019-01-25 11:46:02.187 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
-2019-01-25 11:46:02.193 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
-2019-01-25 11:46:02.195 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
-2019-01-25 11:46:02.197 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
-2019-01-25 11:46:02.198 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
-2019-01-25 11:46:02.200 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
-2019-01-25 11:46:02.251 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
-2019-01-25 11:46:02.509 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==>  Preparing: SELECT * FROM sys_code WHERE valid!=0 
-2019-01-25 11:46:02.526 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 
-2019-01-25 11:46:02.594 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <==      Total: 70
-2019-01-25 11:46:02.596 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
-2019-01-25 11:46:02.599 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
-2019-01-25 11:46:02.657 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==>  Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a 
-2019-01-25 11:46:02.658 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters: 
-2019-01-25 11:46:02.724 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <==      Total: 26
-2019-01-25 11:46:02.725 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:26
-2019-01-25 11:46:02.726 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==>  Preparing: SELECT * FROM t_sys_organ 
-2019-01-25 11:46:02.726 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters: 
-2019-01-25 11:46:02.748 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <==      Total: 7
-2019-01-25 11:46:02.749 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:7
-2019-01-25 11:46:02.769 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
-2019-01-25 11:46:02.769 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:46:02.775 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:46:02.775 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:26
-2019-01-25 11:46:02.789 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
-2019-01-25 11:46:02.801 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
-2019-01-25 11:46:02.820 |-INFO  [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
-2019-01-25 11:46:02.844 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
-2019-01-25 11:46:02.854 |-INFO  [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 14.385 seconds (JVM running for 16.517)
-2019-01-25 11:46:07.875 |-INFO  [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
-2019-01-25 11:46:07.875 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
-2019-01-25 11:46:07.912 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 37 ms
-2019-01-25 11:46:08.012 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.012 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.012 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.012 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.012 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.061 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.070 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.071 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.072 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.072 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.079 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.080 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.080 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.088 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.088 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.089 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.095 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.095 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.096 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.101 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.138 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.139 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.140 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.141 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.141 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.151 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.152 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.152 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.153 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.164 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.164 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.165 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.165 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.165 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.167 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.173 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.174 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.174 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.174 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.176 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.177 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.181 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.183 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.183 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.190 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.221 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.221 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.221 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.221 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.221 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.233 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.233 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.233 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.233 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.233 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.280 |-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 
-2019-01-25 11:46:08.281 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 11:46:08.285 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 11:46:08.286 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 11:46:08.290 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 11:46:08.291 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 11:46:08.296 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 11:46:08.297 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 11:46:08.297 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 11:46:08.299 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.300 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.309 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 11:46:08.311 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 11:46:08.317 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:46:08.366 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.368 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.370 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.370 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.370 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.376 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.376 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.376 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.377 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.383 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.384 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.385 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.386 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.387 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.388 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.389 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.394 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.395 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.396 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.399 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.401 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.402 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.661 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.665 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:46:08.665 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 11:46:08.677 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.678 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.681 |-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 
-2019-01-25 11:46:08.681 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.681 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 11:46:08.683 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:46:08.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 11:46:08.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 11:46:08.696 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 11:46:08.717 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 11:46:08.727 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.731 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.731 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.740 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.741 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.742 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.750 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.757 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.762 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.763 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.792 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 11:46:08.793 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 11:46:08.811 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 11:46:08.829 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:08.833 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:08.841 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:08.842 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:08.842 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.850 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:08.851 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:08.852 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:08.856 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:08.860 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:08.862 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:08.867 |-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=? 
-2019-01-25 11:46:08.868 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:46:08.874 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:46:09.019 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:09.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:09.023 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:09.030 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:09.031 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:09.032 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:09.040 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:09.040 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:09.041 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:09.047 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:09.053 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:09.055 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:09.125 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 11:46:09.126 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 11:46:09.175 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 11:46:09.176 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 11:46:09.177 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 11:46:09.186 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 11:46:10.706 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:10.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:10.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:10.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:10.723 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:10.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:10.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:10.752 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:10.754 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.764 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.766 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.771 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:10.771 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:46:10.772 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:10.772 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:46:10.780 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:10.780 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:46:10.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:46:10.781 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:10.782 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:46:10.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:46:10.782 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.782 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.794 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:46:10.794 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:10.795 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:10.795 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 11:46:10.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 11:46:10.800 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:46:10.803 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:46:10.804 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:46:10.807 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:10.820 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:10.820 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:46:10.822 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.827 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 11:46:10.827 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 11:46:10.829 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:46:10.830 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:46:10.846 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 11:46:10.847 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:46:10.849 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 11:46:10.882 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:46:10.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 11:46:10.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:46:10.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:46:10.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:48:17.678 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.679 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.680 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.680 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.688 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.706 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.706 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.707 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.717 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.717 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.717 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.717 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.718 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.719 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.722 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.723 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.723 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.723 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.725 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.725 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.732 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.732 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.732 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.732 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.733 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.733 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.733 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.733 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.733 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.740 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.748 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.749 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.749 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.749 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.750 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.750 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.750 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.751 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.751 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.753 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.756 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.756 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.761 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.762 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
-2019-01-25 11:48:17.763 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
-2019-01-25 11:48:17.764 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.764 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
-2019-01-25 11:48:17.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
-2019-01-25 11:48:17.766 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.766 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.768 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.768 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
-2019-01-25 11:48:17.769 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
-2019-01-25 11:48:17.769 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.769 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
-2019-01-25 11:48:17.771 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 7
-2019-01-25 11:48:17.777 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:48:17.778 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
-2019-01-25 11:48:17.779 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
-2019-01-25 11:48:17.788 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
-2019-01-25 11:48:17.789 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.790 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.799 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.851 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.852 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.852 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.859 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.861 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.861 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.861 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.862 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.863 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.868 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.869 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.870 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.870 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.871 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.871 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.872 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.877 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.878 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.881 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.881 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.881 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.882 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.882 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.887 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.888 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.889 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.893 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.894 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.895 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.895 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.895 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.896 |-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 
-2019-01-25 11:48:17.896 |-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 
-2019-01-25 11:48:17.896 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.896 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
-2019-01-25 11:48:17.897 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
-2019-01-25 11:48:17.898 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
-2019-01-25 11:48:17.898 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
-2019-01-25 11:48:17.905 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
-2019-01-25 11:48:17.907 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
-2019-01-25 11:48:17.907 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
-2019-01-25 11:48:17.917 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:17.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:17.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:17.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:17.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:17.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:17.952 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:17.953 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:17.958 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
-2019-01-25 11:48:17.959 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
-2019-01-25 11:48:17.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 18
-2019-01-25 11:48:17.979 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:18.081 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:18.082 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:18.088 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:18.089 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:18.090 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:18.100 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:18.100 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:18.101 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:18.107 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:18.112 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:18.114 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:18.116 |-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=? 
-2019-01-25 11:48:18.117 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
-2019-01-25 11:48:18.123 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
-2019-01-25 11:48:18.264 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:18.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:18.269 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:18.279 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:18.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 
-2019-01-25 11:48:18.279 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:18.288 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:18.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:18.290 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:18.297 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:18.301 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:18.303 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:18.320 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
-2019-01-25 11:48:18.321 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
-2019-01-25 11:48:18.327 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
-2019-01-25 11:48:18.328 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
-2019-01-25 11:48:18.330 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
-2019-01-25 11:48:18.346 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 9
-2019-01-25 11:48:19.403 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.407 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:19.408 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:19.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:19.415 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:19.416 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.424 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:19.425 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:19.426 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.432 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:19.437 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:19.439 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.450 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:48:19.451 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:48:19.452 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.453 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:19.457 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:19.459 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 11:48:19.460 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==>  Preparing: UPDATE check_task SET check_status = ?, remark = ? WHERE id = ? 
-2019-01-25 11:48:19.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
-2019-01-25 11:48:19.460 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| ==> Parameters: 3(Integer), null, 88380(Long)
-2019-01-25 11:48:19.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
-2019-01-25 11:48:19.466 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:19.467 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:19.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
-2019-01-25 11:48:19.468 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
-2019-01-25 11:48:19.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.476 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:19.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:19.477 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 71
-2019-01-25 11:48:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
-2019-01-25 11:48:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
-2019-01-25 11:48:19.484 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:19.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
-2019-01-25 11:48:19.489 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:19.490 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
-2019-01-25 11:48:19.491 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.492 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
-2019-01-25 11:48:19.497 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==>  Preparing: SELECT * FROM check_task WHERE check_status!=22 and checked_person = ? and period_id = ( select period_id from check_task where id = ? ) 
-2019-01-25 11:48:19.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==>  Preparing: SELECT *, a.score as check_item_score, a.name as check_item_name FROM check_score left join check_item a on check_item_id=a.id WHERE 1=1 AND task_id = ? 
-2019-01-25 11:48:19.498 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| ==> Parameters: 2645(Long), 88380(Long)
-2019-01-25 11:48:19.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:48:19.506 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.ScoreDao.getScoreList [159] -| <==      Total: 0
-2019-01-25 11:48:19.506 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getUserCount [159] -| <==      Total: 2
-2019-01-25 11:48:19.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.update [159] -| <==    Updates: 1
-2019-01-25 11:48:19.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==>  Preparing: SELECT * FROM check_task WHERE id = ? 
-2019-01-25 11:48:19.531 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| ==> Parameters: 88380(Long)
-2019-01-25 11:48:19.537 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TaskDao.getOne [159] -| <==      Total: 1
-2019-01-25 14:02:39.969 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:08.199 |-INFO  [restartedMain] com.xintong.VideocheckApplication [48] -| Starting VideocheckApplication on MSI with PID 15948 (D:\Visuallnspection_njy\VisualInspection_server\target\classes started by liwei in D:\Visuallnspection_njy\VisualInspection_server)
+2019-03-27 01:20:08.205 |-INFO  [restartedMain] com.xintong.VideocheckApplication [637] -| No active profile set, falling back to default profiles: default
+2019-03-27 01:20:08.508 |-INFO  [background-preinit] org.hibernate.validator.internal.util.Version [30] -| HV000001: Hibernate Validator 5.3.4.Final
+2019-03-27 01:20:08.533 |-INFO  [restartedMain] org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext [582] -| Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3f55351b: startup date [Wed Mar 27 01:20:08 GMT+08:00 2019]; root of context hierarchy
+2019-03-27 01:20:12.249 |-INFO  [restartedMain] org.springframework.data.repository.config.RepositoryConfigurationDelegate [165] -| Multiple Spring Data modules found, entering strict repository configuration mode!
+2019-03-27 01:20:13.845 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$2de5d25d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.110 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration' of type [org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration$$EnhancerBySpringCGLIB$$c6939a97] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.134 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'objectPostProcessor' of type [org.springframework.security.config.annotation.configuration.AutowireBeanFactoryObjectPostProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.141 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler@16749636' of type [org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.156 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration' of type [org.springframework.security.config.annotation.method.configuration.GlobalMethodSecurityConfiguration$$EnhancerBySpringCGLIB$$eb683d49] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.185 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'methodSecurityMetadataSource' of type [org.springframework.security.access.method.DelegatingMethodSecurityMetadataSource] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.211 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'redisConf' of type [com.xintong.system.securityTools.RedisConf$$EnhancerBySpringCGLIB$$19294659] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.246 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'keyGenerator' of type [com.xintong.system.securityTools.RedisConf$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:14.250 |-INFO  [restartedMain] org.springframework.context.support.PostProcessorRegistrationDelegate$BeanPostProcessorChecker [325] -| Bean 'org.springframework.cache.annotation.ProxyCachingConfiguration' of type [org.springframework.cache.annotation.ProxyCachingConfiguration$$EnhancerBySpringCGLIB$$76f8087b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
+2019-03-27 01:20:15.465 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [89] -| Tomcat initialized with port(s): 8089 (http)
+2019-03-27 01:20:15.485 |-INFO  [restartedMain] org.apache.catalina.core.StandardService [179] -| Starting service Tomcat
+2019-03-27 01:20:15.487 |-INFO  [restartedMain] org.apache.catalina.core.StandardEngine [179] -| Starting Servlet Engine: Apache Tomcat/8.5.11
+2019-03-27 01:20:15.728 |-INFO  [localhost-startStop-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring embedded WebApplicationContext
+2019-03-27 01:20:15.729 |-INFO  [localhost-startStop-1] org.springframework.web.context.ContextLoader [276] -| Root WebApplicationContext: initialization completed in 7196 ms
+2019-03-27 01:20:16.356 |-INFO  [localhost-startStop-1] com.xintong.visualinspection.mapper.PageHelperConfiguration [20] -| ------Register MyBatis PageHelper
+2019-03-27 01:20:19.781 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'metricsFilter' to: [/*]
+2019-03-27 01:20:19.782 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'characterEncodingFilter' to: [/*]
+2019-03-27 01:20:19.782 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
+2019-03-27 01:20:19.782 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'httpPutFormContentFilter' to: [/*]
+2019-03-27 01:20:19.782 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'requestContextFilter' to: [/*]
+2019-03-27 01:20:19.784 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.DelegatingFilterProxyRegistrationBean [258] -| Mapping filter: 'springSecurityFilterChain' to: [/*]
+2019-03-27 01:20:19.784 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'webRequestLoggingFilter' to: [/*]
+2019-03-27 01:20:19.785 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [271] -| Mapping filter: 'druidWebStatFilter' to urls: [/*]
+2019-03-27 01:20:19.785 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'jwtAuthenticationTokenFilter' to: [/*]
+2019-03-27 01:20:19.785 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'corsFilter' to: [/*]
+2019-03-27 01:20:19.785 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'authenticationTokenFilterBean' to: [/*]
+2019-03-27 01:20:19.786 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.FilterRegistrationBean [258] -| Mapping filter: 'applicationContextIdFilter' to: [/*]
+2019-03-27 01:20:19.786 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'dispatcherServlet' to [/]
+2019-03-27 01:20:19.788 |-INFO  [localhost-startStop-1] org.springframework.boot.web.servlet.ServletRegistrationBean [190] -| Mapping servlet: 'com.xintong.system.druidTools.DruidStatViewServlet' to [/druid/*]
+2019-03-27 01:20:21.443 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService 
+2019-03-27 01:20:21.452 |-INFO  [restartedMain] org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor [165] -| Initializing ExecutorService  'threadExecutor'
+2019-03-27 01:20:21.705 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/css/**'], []
+2019-03-27 01:20:21.705 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: Ant [pattern='/js/**'], []
+2019-03-27 01:20:21.843 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@21d3f816, org.springframework.security.web.context.SecurityContextPersistenceFilter@6177c3fb, org.springframework.security.web.header.HeaderWriterFilter@2ed3d377, org.springframework.web.filter.CorsFilter@37b107a9, org.springframework.security.web.authentication.logout.LogoutFilter@28d21828, com.xintong.system.securityTools.JwtAuthenticationTokenFilter@3e0d9dcf, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@646dfa9, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@2c86e7ea, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@58f5c8e8, org.springframework.security.web.session.SessionManagementFilter@77fe989c, org.springframework.security.web.access.ExceptionTranslationFilter@37cfa10a, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@696107ef]
+2019-03-27 01:20:21.871 |-INFO  [restartedMain] org.springframework.security.web.DefaultSecurityFilterChain [43] -| Creating filter chain: org.springframework.boot.actuate.autoconfigure.ManagementWebSecurityAutoConfiguration$LazyEndpointPathRequestMatcher@609f174e, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@2bb85665, org.springframework.security.web.context.SecurityContextPersistenceFilter@49e5244a, org.springframework.security.web.header.HeaderWriterFilter@39763060, org.springframework.security.web.authentication.logout.LogoutFilter@7488cb9, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3818583e, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@65c25c1a, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@6d3f95f2, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@385013c, org.springframework.security.web.session.SessionManagementFilter@abcda84, org.springframework.security.web.access.ExceptionTranslationFilter@525fda86, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@4375291a]
+2019-03-27 01:20:22.040 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter [534] -| Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3f55351b: startup date [Wed Mar 27 01:20:08 GMT+08:00 2019]; root of context hierarchy
+2019-03-27 01:20:22.177 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> com.xintong.visualinspection.controller.AppErrorPageController.error(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.178 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView com.xintong.visualinspection.controller.AppErrorPageController.errorHtml(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.179 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckAppeal)
+2019-03-27 01:20:22.180 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.update(com.xintong.visualinspection.bean.CheckAppeal)
+2019-03-27 01:20:22.180 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.delete(com.xintong.visualinspection.bean.CheckAppeal)
+2019-03-27 01:20:22.180 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.181 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getByTaskId(com.xintong.visualinspection.bean.CheckAppeal)
+2019-03-27 01:20:22.181 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getById(com.xintong.visualinspection.bean.CheckAppeal)
+2019-03-27 01:20:22.181 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkAppeal/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckAppealController.getList(com.xintong.visualinspection.bean.CheckAppeal,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.185 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.186 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.update(com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.186 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.delete(com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.186 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/refuse]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.refuse(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.187 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agreePatch]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agreePatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.187 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getTopReason]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getTopReason()
+2019-03-27 01:20:22.187 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/agree]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.agree(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.187 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getByTaskId(com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.188 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getById(com.xintong.visualinspection.bean.CheckApply)
+2019-03-27 01:20:22.188 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkApply/getList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckApplyController.getList(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckApply,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.189 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.add(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.190 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.update(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.190 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.delete(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.190 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getAll]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getAll()
+2019-03-27 01:20:22.191 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getCheckItemByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getCheckItemByRuleType(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.191 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByRuleId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByRuleId(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.191 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getForTaskById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getForTaskById(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.192 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getById(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.192 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkItem/getByParentId]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckItemController.getByParentId(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.194 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.add(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.194 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.update(com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.194 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.delete(com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.195 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getOtherCheckStatistics]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getOtherCheckStatistics(com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.195 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckById(com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.196 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkOther/getCheckByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckOtherController.getCheckByDeptId(com.xintong.visualinspection.bean.CheckOther,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.198 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.add(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.198 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/update]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.update(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.199 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.delete(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.199 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getByName]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByName(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.199 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getItemListByRuleType]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getItemListByRuleType(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.199 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getAllRule/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getAllRules(com.xintong.visualinspection.bean.CheckRule,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.200 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getListById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getByListId(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.200 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRule/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleController.getById(com.xintong.visualinspection.bean.CheckRule)
+2019-03-27 01:20:22.201 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(java.util.List<com.xintong.visualinspection.bean.CheckItem>)
+2019-03-27 01:20:22.201 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/add]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.add(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.201 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/checkRuleItem/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.CheckRuleItemController.delete(com.xintong.visualinspection.bean.CheckItem)
+2019-03-27 01:20:22.202 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/comm/getTime]}" onto public java.lang.String com.xintong.visualinspection.controller.CommonController.getTime(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.203 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.add(com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.203 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.update(com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.204 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.delete(com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.204 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByName(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.204 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlagAndValue]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlagAndValue(com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.205 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/constant/getConstantByFlag]}" onto public java.lang.String com.xintong.visualinspection.controller.ConstantController.getConstantByFlag(com.xintong.visualinspection.bean.Constant)
+2019-03-27 01:20:22.207 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAll()
+2019-03-27 01:20:22.207 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptInfosByDeptId],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptInfosByDeptId(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Organ)
+2019-03-27 01:20:22.207 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/addDept],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.addDept(com.xintong.visualinspection.bean.Organ) throws java.lang.Exception
+2019-03-27 01:20:22.208 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/updateDept/{organid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.updateDept(com.xintong.visualinspection.bean.Organ,int)
+2019-03-27 01:20:22.208 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllDept(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.208 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptById/{organid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptById(java.lang.Integer)
+2019-03-27 01:20:22.209 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllFs],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllFs()
+2019-03-27 01:20:22.209 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllRM],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllRM()
+2019-03-27 01:20:22.209 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getAllWG],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAllWG()
+2019-03-27 01:20:22.209 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/deleteDept/{organid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.deleteDept(java.lang.Integer)
+2019-03-27 01:20:22.210 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getDeptByParent/{pid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getDeptByParent(java.lang.Integer)
+2019-03-27 01:20:22.210 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/dept/getFsByDept],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.DepartmentController.getAFsByDeptId(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.211 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/upload]}" onto public java.lang.String com.xintong.visualinspection.controller.FileController.UploadFile(javax.servlet.http.HttpServletRequest,org.springframework.web.multipart.MultipartHttpServletRequest)
+2019-03-27 01:20:22.211 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/download/{filename:[a-zA-Z0-9-.]+}],methods=[GET]}" onto public void com.xintong.visualinspection.controller.FileController.Download(javax.servlet.http.HttpServletResponse,java.lang.String)
+2019-03-27 01:20:22.212 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/batch/upload],methods=[POST]}" onto public void com.xintong.visualinspection.controller.FileController.handleFileUpload(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.213 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/appeal/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getAppealStatisticExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.214 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/check/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getCheckWorkExcel(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.214 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/static/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheckststic(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.215 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/business/feedback],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getBusinessFeedback(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
+2019-03-27 01:20:22.215 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
+2019-03-27 01:20:22.216 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/operation/manage/integration],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOperationInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
+2019-03-27 01:20:22.216 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/score/item/info],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getScoreItemInfo(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.String,java.lang.String)
+2019-03-27 01:20:22.216 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/other/check/excel],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getOtherCheck(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,com.xintong.visualinspection.bean.CheckOther)
+2019-03-27 01:20:22.217 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/file/employee/order],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.FileExcelController.getEmployeeOrder(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,java.lang.Long,java.lang.Long,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.String)
+2019-03-27 01:20:22.217 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/job/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.JobController.add(com.xintong.visualinspection.bean.Job)
+2019-03-27 01:20:22.219 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/addMenu],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.addMenu(com.xintong.visualinspection.bean.Menu) throws java.lang.Exception
+2019-03-27 01:20:22.219 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuByParent/{pid}/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuByParent(java.lang.Integer,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.219 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getAllMenu(javax.servlet.http.HttpServletRequest,java.lang.Integer)
+2019-03-27 01:20:22.220 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/getMenuById/{menuid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.getMenuById(java.lang.Integer,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.220 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/deleteMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.deleteMenu(java.lang.Integer)
+2019-03-27 01:20:22.221 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/menu/updateMenu/{menuid}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.MenuController.updateMenu(com.xintong.visualinspection.bean.Menu,int)
+2019-03-27 01:20:22.223 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addRolePermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
+2019-03-27 01:20:22.223 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/addPermission],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.addPermission(com.xintong.visualinspection.bean.Permission) throws java.lang.Exception
+2019-03-27 01:20:22.224 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getAllPermission()
+2019-03-27 01:20:22.224 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updatePermission/{permissionid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updatePermission(com.xintong.visualinspection.bean.Permission,int)
+2019-03-27 01:20:22.225 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deletePermission/{permissionid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(java.lang.Integer)
+2019-03-27 01:20:22.225 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/deleteRolePermission],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.deletePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
+2019-03-27 01:20:22.225 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/updateRolePermission],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.updateRolePermission(com.xintong.visualinspection.pojo.RolePermision) throws java.lang.Exception
+2019-03-27 01:20:22.226 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/permission/getPermissionByRole/{roleid}/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.PermissionController.getPermissionByRole(java.lang.Integer,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.User)
+2019-03-27 01:20:22.227 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/addRole],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.addRole(com.xintong.visualinspection.bean.Role) throws java.lang.Exception
+2019-03-27 01:20:22.228 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/alldata/{page}/{size}],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRoleData(java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.228 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindUser/{roleId}/{users}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindUser(java.lang.Integer,java.lang.String)
+2019-03-27 01:20:22.228 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/updateRole/{roleid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.updateRole(com.xintong.visualinspection.bean.Role,int)
+2019-03-27 01:20:22.229 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByDept/{deptId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByDept(java.lang.Integer)
+2019-03-27 01:20:22.229 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/deleteRole/{roleid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.deleteRole(java.lang.Integer)
+2019-03-27 01:20:22.229 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/get/all],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getAllRole(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.229 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByUser/{userId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByUser(java.lang.Integer)
+2019-03-27 01:20:22.230 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPermision/{permisionid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPermisionidn(java.lang.Integer)
+2019-03-27 01:20:22.230 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/roleBindPermission/{roleId}/{permissions}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.roleBindPermission(java.lang.Integer,java.lang.String)
+2019-03-27 01:20:22.230 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/role/getRoleByPosition/{positionId}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.RoleController.getRoleByPosition(java.lang.Integer)
+2019-03-27 01:20:22.231 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/add]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.add(com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.232 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/update]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.232 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.delete(com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.232 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getTopRemark]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getTopRemark()
+2019-03-27 01:20:22.232 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getScoreList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getScoreList(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.233 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/backoutScore]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.backoutScore(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.233 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/getByTaskId]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.getByTaskId(com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.233 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/score/updateByTaskIdAndPerson]}" onto public java.lang.String com.xintong.visualinspection.controller.ScoreController.updateByTaskIdAndPerson(com.xintong.visualinspection.bean.Score)
+2019-03-27 01:20:22.236 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/business/feedback]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getBusinessFeedback(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.236 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/user/score]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.UserStatistic)
+2019-03-27 01:20:22.237 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/checkedItem/detail/info/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemDetailInfo(com.xintong.visualinspection.bean.StatisticsBean,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.237 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/manage/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.237 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
+2019-03-27 01:20:22.237 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/appeal]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckAppeal(com.xintong.visualinspection.bean.CheckAppealStatistic)
+2019-03-27 01:20:22.238 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWrecker(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.238 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/checkman/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckmanInfo(com.xintong.visualinspection.bean.CheckmanStatisticsBean)
+2019-03-27 01:20:22.238 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
+2019-03-27 01:20:22.239 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.239 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/operation/manage/integration]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getOperationInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.239 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/item/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getScoreItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.242 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.243 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/data]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrder(java.lang.String)
+2019-03-27 01:20:22.243 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectYearScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.243 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.244 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/employee/order/detail]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getEmployeeOrderByUserId(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.244 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/tollgate/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectTollgateScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.245 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/score/center/manage/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.selectCentermanageScoreChange(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.245 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/twice/itemscore/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getTwiceCheckedItemInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.245 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/stuff/score/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getPersonalStuffItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.246 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/lost/score/rate]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckedInfoRate(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.247 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/up/five]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUp5PersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.247 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/work/person]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsworkInfoPersonNumber(com.xintong.visualinspection.bean.StatisticsFsWork)
+2019-03-27 01:20:22.247 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/year/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.247 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/one/person/checkedItem/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsOnePersonCheckedItemInfo(com.xintong.visualinspection.bean.StatisticsBean)
+2019-03-27 01:20:22.248 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/fs/unregular/work/info]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getFsUnregularworkInfo(com.xintong.visualinspection.bean.StatisticsFsWork)
+2019-03-27 01:20:22.248 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/statistics/check/wrecker/staff]}" onto public java.lang.String com.xintong.visualinspection.controller.StatisticsController.getCheckWreckerStaff(com.xintong.visualinspection.bean.WreckerStatisticsBO)
+2019-03-27 01:20:22.251 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.add(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.251 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatch]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatch(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.252 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.update(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.252 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.delete(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.253 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getStatusById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getStatusById(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.253 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/deleteUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.deleteUserCount(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.254 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/confirm]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.confirm(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.254 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskEnd]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskEnd(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.255 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/taskStart]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.taskStart(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.255 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchById(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.256 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getTaskList/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskList(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.256 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getById]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getById(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.256 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/dispatchAllNoScoreTask]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.dispatchAllNoScoreTask(javax.servlet.http.HttpServletRequest,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.257 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCheckedTaskByPage/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCheckedTaskByPage(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.258 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/gettasklistbydept/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getTaskListByDept(javax.servlet.http.HttpServletRequest,java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.pojo.TaskListByDeptAppeal)
+2019-03-27 01:20:22.258 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/updateUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.updateUserCount(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.258 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/task/getUserCount]}" onto public java.lang.String com.xintong.visualinspection.controller.TaskController.getUserCount(com.xintong.visualinspection.bean.Task)
+2019-03-27 01:20:22.261 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.add(com.xintong.visualinspection.bean.TeamClass)
+2019-03-27 01:20:22.261 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(com.xintong.visualinspection.bean.TeamClass)
+2019-03-27 01:20:22.262 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/update/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.update(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.263 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.delete(com.xintong.visualinspection.bean.TeamClass)
+2019-03-27 01:20:22.263 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassListAndUsers]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassListAndUsers(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.263 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassCode]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassCodeInfo(com.xintong.visualinspection.bean.ClassCode)
+2019-03-27 01:20:22.264 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getUserClasss]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.pojo.TeamClass)
+2019-03-27 01:20:22.264 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassList]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassList(com.xintong.visualinspection.bean.TeamClass,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.265 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/add/list]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.addList(java.util.List<com.xintong.visualinspection.bean.TeamClass>,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.265 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/teamClass/getClassById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamClassController.getClassById(com.xintong.visualinspection.bean.TeamClass)
+2019-03-27 01:20:22.268 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/add]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.add(com.xintong.visualinspection.bean.Team)
+2019-03-27 01:20:22.268 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/update]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.update(com.xintong.visualinspection.bean.Team)
+2019-03-27 01:20:22.269 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/delete]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.delete(com.xintong.visualinspection.bean.Team)
+2019-03-27 01:20:22.269 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getDetailById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsById(com.xintong.visualinspection.bean.Team)
+2019-03-27 01:20:22.270 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamPersonsByUserClassId/{user_calss_id}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamPersonsByUserClassId(java.lang.Long)
+2019-03-27 01:20:22.270 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByDeptId/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByDeptId(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.271 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamById]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamById(com.xintong.visualinspection.bean.Team)
+2019-03-27 01:20:22.271 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/team/getTeamByName/{page}/{size}]}" onto public java.lang.String com.xintong.visualinspection.controller.TeamController.getTeamByName(com.xintong.visualinspection.bean.Team,java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.273 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test1]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index()
+2019-03-27 01:20:22.274 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.index(org.springframework.ui.Model,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.275 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[PUT]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.update()
+2019-03-27 01:20:22.275 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[POST]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.save()
+2019-03-27 01:20:22.275 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/test]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.test()
+2019-03-27 01:20:22.276 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user1],methods=[GET]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.getList()
+2019-03-27 01:20:22.276 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/login]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.login()
+2019-03-27 01:20:22.277 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/admin]}" onto public java.lang.String com.xintong.visualinspection.controller.TestController.hello()
+2019-03-27 01:20:22.278 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getList(com.xintong.visualinspection.bean.UserClass)
+2019-03-27 01:20:22.279 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/updateList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.updateList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
+2019-03-27 01:20:22.279 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/addList]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.addList(java.util.List<com.xintong.visualinspection.bean.UserClass>)
+2019-03-27 01:20:22.280 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/userClass/getUsersByTeamId/{user_class_id}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserClassController.getUsersByTeamId(java.lang.Integer)
+2019-03-27 01:20:22.282 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserInfo],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUserInfo(javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.283 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/logout],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.logout()
+2019-03-27 01:20:22.283 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/addUser],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.addUser(com.xintong.visualinspection.bean.User) throws java.lang.Exception
+2019-03-27 01:20:22.283 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/auth/login],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.login(com.xintong.visualinspection.bean.User)
+2019-03-27 01:20:22.283 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getAllCheckman],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getAllCheckman()
+2019-03-27 01:20:22.284 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/get/all/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getallUsers(java.lang.Integer,java.lang.Integer,javax.servlet.http.HttpServletRequest)
+2019-03-27 01:20:22.284 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getFsUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getFsUsers(com.xintong.visualinspection.bean.User)
+2019-03-27 01:20:22.285 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getWGUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getWGUserList(com.xintong.visualinspection.bean.User)
+2019-03-27 01:20:22.285 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/deleteUser/{userid}],methods=[DELETE],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.deleteUser(java.lang.Integer)
+2019-03-27 01:20:22.286 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserList],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUsers(com.xintong.visualinspection.bean.User)
+2019-03-27 01:20:22.287 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/updateUser/{userid}],methods=[PUT],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.updateUser(com.xintong.visualinspection.bean.User,int)
+2019-03-27 01:20:22.287 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/user/getUserById/{userid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.UserController.getUser(java.lang.Integer)
+2019-03-27 01:20:22.289 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoByDeptAndLane/{page}/{size}],methods=[POST],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoByDeptAndLane(java.lang.Integer,java.lang.Integer,com.xintong.visualinspection.bean.Webcam)
+2019-03-27 01:20:22.289 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getVideoById/{webcamid}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getVideoById(java.lang.String)
+2019-03-27 01:20:22.290 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping [543] -| Mapped "{[/webcam/getAllVideo/{page}/{size}],methods=[GET],produces=[application/json;charset=UTF-8]}" onto public java.lang.String com.xintong.visualinspection.controller.WebcamController.getAllVideo(java.lang.Integer,java.lang.Integer)
+2019-03-27 01:20:22.398 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/login] onto handler of type [class org.springframework.web.servlet.mvc.ParameterizableViewController]
+2019-03-27 01:20:22.475 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
+2019-03-27 01:20:22.475 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
+2019-03-27 01:20:22.532 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in baseController
+2019-03-27 01:20:22.533 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkAppealController
+2019-03-27 01:20:22.534 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkApplyController
+2019-03-27 01:20:22.536 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkItemController
+2019-03-27 01:20:22.536 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkOtherController
+2019-03-27 01:20:22.537 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleController
+2019-03-27 01:20:22.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in checkRuleItemController
+2019-03-27 01:20:22.538 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in commonController
+2019-03-27 01:20:22.539 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in constantController
+2019-03-27 01:20:22.540 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in departmentController
+2019-03-27 01:20:22.540 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileController
+2019-03-27 01:20:22.541 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in fileExcelController
+2019-03-27 01:20:22.541 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in jobController
+2019-03-27 01:20:22.542 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in menuController
+2019-03-27 01:20:22.542 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in permissionController
+2019-03-27 01:20:22.544 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in roleController
+2019-03-27 01:20:22.545 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in scoreController
+2019-03-27 01:20:22.546 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in statisticsController
+2019-03-27 01:20:22.547 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in taskController
+2019-03-27 01:20:22.548 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamClassController
+2019-03-27 01:20:22.549 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in teamController
+2019-03-27 01:20:22.549 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userClassController
+2019-03-27 01:20:22.550 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in userController
+2019-03-27 01:20:22.550 |-INFO  [restartedMain] org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver [273] -| Detected @ExceptionHandler methods in webcamController
+2019-03-27 01:20:22.625 |-INFO  [restartedMain] org.springframework.web.servlet.handler.SimpleUrlHandlerMapping [362] -| Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
+2019-03-27 01:20:23.587 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
+2019-03-27 01:20:23.588 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
+2019-03-27 01:20:23.589 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
+2019-03-27 01:20:24.632 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CronPlugin,interface=CronPlugin]
+2019-03-27 01:20:24.638 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=MailPlugin,interface=MailPlugin]
+2019-03-27 01:20:24.657 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
+2019-03-27 01:20:24.662 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=GroovyLanguageProxy,interface=Language]
+2019-03-27 01:20:24.663 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JavaLanguage,interface=Language]
+2019-03-27 01:20:24.664 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=ScriptLanguage,interface=Language]
+2019-03-27 01:20:24.665 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
+2019-03-27 01:20:24.666 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [57] -| Loaded plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
+2019-03-27 01:20:24.668 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.port=2000 from properties
+2019-03-27 01:20:24.669 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.auth_timeout=600000 from properties
+2019-03-27 01:20:24.669 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.idle_timeout=600000 from properties
+2019-03-27 01:20:24.669 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property ssh.default_encoding=UTF-8 from properties
+2019-03-27 01:20:24.670 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth=simple from properties
+2019-03-27 01:20:24.670 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.username=wen from properties
+2019-03-27 01:20:24.670 |-INFO  [restartedMain] org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration$CrshBootstrapBean [125] -| Configuring property auth.simple.password=wen from properties
+2019-03-27 01:20:24.684 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=KeyAuthenticationPlugin,interface=KeyAuthenticationPlugin]
+2019-03-27 01:20:24.684 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JaasAuthenticationPlugin,interface=AuthenticationPlugin]
+2019-03-27 01:20:24.684 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SimpleAuthenticationPlugin,interface=AuthenticationPlugin]
+2019-03-27 01:20:24.684 |-INFO  [restartedMain] org.crsh.ssh.SSHPlugin [185] -| Booting SSHD
+2019-03-27 01:20:24.696 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=GroovyLanguageProxy,interface=Language]
+2019-03-27 01:20:24.698 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=JavaLanguage,interface=Language]
+2019-03-27 01:20:24.698 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=ScriptLanguage,interface=Language]
+2019-03-27 01:20:24.706 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CRaSHShellFactory,interface=ShellFactory]
+2019-03-27 01:20:24.747 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [113] -| Trying to register BouncyCastle as a JCE provider
+2019-03-27 01:20:25.712 |-INFO  [restartedMain] org.apache.sshd.common.util.SecurityUtils [117] -| Registration succeeded
+2019-03-27 01:20:25.762 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [184] -| About to start CRaSSHD
+2019-03-27 01:20:25.786 |-INFO  [restartedMain] org.crsh.ssh.term.SSHLifeCycle [187] -| CRaSSHD started on port 2000
+2019-03-27 01:20:25.786 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHPlugin,interface=SSHPlugin]
+2019-03-27 01:20:25.786 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=SSHInlinePlugin,interface=CommandPlugin]
+2019-03-27 01:20:25.787 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=CronPlugin,interface=CronPlugin]
+2019-03-27 01:20:25.787 |-INFO  [restartedMain] org.crsh.plugin.PluginManager [84] -| Initialized plugin Plugin[type=MailPlugin,interface=MailPlugin]
+2019-03-27 01:20:26.328 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/auditevents || /auditevents.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public org.springframework.http.ResponseEntity<?> org.springframework.boot.actuate.endpoint.mvc.AuditEventsMvcEndpoint.findByPrincipalAndAfterAndType(java.lang.String,java.util.Date,java.lang.String)
+2019-03-27 01:20:26.329 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/beans || /beans.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.329 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EnvironmentMvcEndpoint.value(java.lang.String)
+2019-03-27 01:20:26.329 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/env || /env.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.330 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/configprops || /configprops.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.331 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.get(java.lang.String)
+2019-03-27 01:20:26.331 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers/{name:.*}],methods=[POST],consumes=[application/vnd.spring-boot.actuator.v1+json || application/json],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.LoggersMvcEndpoint.set(java.lang.String,java.util.Map<java.lang.String, java.lang.String>)
+2019-03-27 01:20:26.331 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/loggers || /loggers.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.331 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics/{name:.*}],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.MetricsMvcEndpoint.value(java.lang.String)
+2019-03-27 01:20:26.331 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/metrics || /metrics.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.332 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/health || /health.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.HealthMvcEndpoint.invoke(javax.servlet.http.HttpServletRequest,java.security.Principal)
+2019-03-27 01:20:26.333 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/autoconfig || /autoconfig.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.334 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/trace || /trace.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.335 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/heapdump || /heapdump.json],methods=[GET],produces=[application/octet-stream]}" onto public void org.springframework.boot.actuate.endpoint.mvc.HeapdumpMvcEndpoint.invoke(boolean,javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws java.io.IOException,javax.servlet.ServletException
+2019-03-27 01:20:26.335 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/dump || /dump.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.335 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/info || /info.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:26.336 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.mvc.EndpointHandlerMapping [543] -| Mapped "{[/mappings || /mappings.json],methods=[GET],produces=[application/vnd.spring-boot.actuator.v1+json || application/json]}" onto public java.lang.Object org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter.invoke()
+2019-03-27 01:20:27.018 |-INFO  [restartedMain] org.springframework.boot.devtools.autoconfigure.OptionalLiveReloadServer [58] -| LiveReload server is running on port 35729
+2019-03-27 01:20:27.026 |-WARN  [restartedMain] org.springframework.boot.starter.remote.shell.RemoteShellStarterDeprecatedWarningAutoConfiguration [43] -| spring-boot-starter-remote-shell is deprecated as of Spring Boot 1.5 and will be removed in Spring Boot 2.0
+2019-03-27 01:20:27.271 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [431] -| Registering beans for JMX exposure on startup
+2019-03-27 01:20:27.272 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'clusterDataSource' has been autodetected for JMX exposure
+2019-03-27 01:20:27.272 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'masterDataSource' has been autodetected for JMX exposure
+2019-03-27 01:20:27.272 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [916] -| Bean with name 'xiansuoDataSource' has been autodetected for JMX exposure
+2019-03-27 01:20:27.281 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'masterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=masterDataSource,type=DruidDataSource]
+2019-03-27 01:20:27.284 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'xiansuoDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=xiansuoDataSource,type=DruidDataSource]
+2019-03-27 01:20:27.285 |-INFO  [restartedMain] org.springframework.jmx.export.annotation.AnnotationMBeanExporter [671] -| Located MBean 'clusterDataSource': registering with JMX server as MBean [com.alibaba.druid.pool:name=clusterDataSource,type=DruidDataSource]
+2019-03-27 01:20:27.285 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [431] -| Registering beans for JMX exposure on startup
+2019-03-27 01:20:27.290 |-INFO  [restartedMain] org.springframework.context.support.DefaultLifecycleProcessor [343] -| Starting beans in phase 0
+2019-03-27 01:20:27.291 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'auditEventsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=auditEventsEndpoint]
+2019-03-27 01:20:27.309 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'requestMappingEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=requestMappingEndpoint]
+2019-03-27 01:20:27.322 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'environmentEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=environmentEndpoint]
+2019-03-27 01:20:27.327 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'healthEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=healthEndpoint]
+2019-03-27 01:20:27.330 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'beansEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=beansEndpoint]
+2019-03-27 01:20:27.332 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'infoEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=infoEndpoint]
+2019-03-27 01:20:27.334 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'loggersEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=loggersEndpoint]
+2019-03-27 01:20:27.340 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'metricsEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=metricsEndpoint]
+2019-03-27 01:20:27.341 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'traceEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=traceEndpoint]
+2019-03-27 01:20:27.343 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'dumpEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=dumpEndpoint]
+2019-03-27 01:20:27.345 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'autoConfigurationReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=autoConfigurationReportEndpoint]
+2019-03-27 01:20:27.346 |-INFO  [restartedMain] org.springframework.boot.actuate.endpoint.jmx.EndpointMBeanExporter [678] -| Located managed bean 'configurationPropertiesReportEndpoint': registering with JMX server as MBean [org.springframework.boot:type=Endpoint,name=configurationPropertiesReportEndpoint]
+2019-03-27 01:20:27.399 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-1} inited
+2019-03-27 01:20:27.674 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==>  Preparing: SELECT * FROM sys_code WHERE valid!=0 
+2019-03-27 01:20:27.688 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| ==> Parameters: 
+2019-03-27 01:20:27.721 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.ConstantDao.getAll [159] -| <==      Total: 95
+2019-03-27 01:20:27.722 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [45] -| 加载用户信息成功,数据数:0
+2019-03-27 01:20:27.725 |-INFO  [restartedMain] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-2} inited
+2019-03-27 01:20:27.812 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==>  Preparing: SELECT a.*,(select NAME from sys_job where id = a.POSITIONID ) as position_name FROM t_sys_users a 
+2019-03-27 01:20:27.812 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| ==> Parameters: 
+2019-03-27 01:20:27.890 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.UserInfoDao.getAll [159] -| <==      Total: 681
+2019-03-27 01:20:27.891 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [54] -| 加载用户信息成功,数据数:681
+2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==>  Preparing: SELECT * FROM t_sys_organ 
+2019-03-27 01:20:27.892 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters: 
+2019-03-27 01:20:27.902 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <==      Total: 34
+2019-03-27 01:20:27.902 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [63] -| 加载部门信息成功,数据数:34
+2019-03-27 01:20:28.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2019-03-27 01:20:28.075 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2019-03-27 01:20:28.085 |-DEBUG [restartedMain] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:20:28.085 |-INFO  [restartedMain] com.xintong.visualinspection.util.CacheUtil [74] -| 加载用户信息成功,数据数:681
+2019-03-27 01:20:28.100 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Initializing ProtocolHandler ["http-nio-8089"]
+2019-03-27 01:20:28.111 |-INFO  [restartedMain] org.apache.coyote.http11.Http11NioProtocol [179] -| Starting ProtocolHandler [http-nio-8089]
+2019-03-27 01:20:28.122 |-INFO  [restartedMain] org.apache.tomcat.util.net.NioSelectorPool [179] -| Using a shared selector for servlet write/read
+2019-03-27 01:20:28.139 |-INFO  [restartedMain] org.springframework.boot.context.embedded.tomcat.TomcatEmbeddedServletContainer [198] -| Tomcat started on port(s): 8089 (http)
+2019-03-27 01:20:28.145 |-INFO  [restartedMain] com.xintong.VideocheckApplication [57] -| Started VideocheckApplication in 20.273 seconds (JVM running for 23.84)
+2019-03-27 01:20:28.557 |-INFO  [RMI TCP Connection(12)-127.0.0.1] com.alibaba.druid.pool.DruidDataSource [785] -| {dataSource-3} inited
+2019-03-27 01:20:55.610 |-INFO  [http-nio-8089-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] [179] -| Initializing Spring FrameworkServlet 'dispatcherServlet'
+2019-03-27 01:20:55.610 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [489] -| FrameworkServlet 'dispatcherServlet': initialization started
+2019-03-27 01:20:55.660 |-INFO  [http-nio-8089-exec-1] org.springframework.web.servlet.DispatcherServlet [508] -| FrameworkServlet 'dispatcherServlet': initialization completed in 50 ms
+2019-03-27 01:20:55.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:55.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:55.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:55.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:55.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:55.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:55.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:55.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:55.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:55.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:55.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:55.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:55.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:55.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:55.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:55.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:55.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:55.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.341 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.341 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.341 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.341 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.341 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.366 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.367 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.376 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.376 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.377 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.377 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.378 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.389 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.390 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.391 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.391 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.392 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.402 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.403 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.404 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.405 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.417 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.421 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:56.423 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.429 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.431 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.431 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.432 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.441 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.446 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:56.448 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.456 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.462 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.464 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.466 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
+2019-03-27 01:20:56.467 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
+2019-03-27 01:20:56.473 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.478 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:56.479 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:20:56.479 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.480 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.480 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.488 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:56.490 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.490 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.496 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:56.499 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.502 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
+2019-03-27 01:20:56.503 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
+2019-03-27 01:20:56.512 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2019-03-27 01:20:56.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2019-03-27 01:20:56.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2019-03-27 01:20:56.527 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
+2019-03-27 01:20:56.528 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
+2019-03-27 01:20:56.537 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
+2019-03-27 01:20:56.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
+2019-03-27 01:20:56.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.619 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.619 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.619 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.622 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.630 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:56.631 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.632 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.633 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.644 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:56.645 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.646 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.648 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.656 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:56.981 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:56.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:56.983 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:56.990 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:57.010 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.010 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.010 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.012 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.012 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.013 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.016 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:20:57.016 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2019-03-27 01:20:57.017 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
+2019-03-27 01:20:57.019 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:20:57.020 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
+2019-03-27 01:20:57.031 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2019-03-27 01:20:57.034 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
+2019-03-27 01:20:57.054 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.056 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:57.057 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:57.066 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:57.067 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:57.068 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.079 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:57.080 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:57.081 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.089 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:57.094 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.095 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.123 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2019-03-27 01:20:57.124 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2019-03-27 01:20:57.184 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 591
+2019-03-27 01:20:57.234 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.235 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:57.236 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:57.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:57.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:57.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:57.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:57.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:57.272 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.274 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2019-03-27 01:20:57.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2019-03-27 01:20:57.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:20:57.444 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:57.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:57.457 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:57.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:57.458 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.467 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:57.468 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:57.476 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:57.480 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:57.482 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:57.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status IN (?, ?)) table_count 
+2019-03-27 01:20:57.559 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| ==> Parameters: 2(Integer), 3(Integer)
+2019-03-27 01:20:57.570 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus_COUNT [159] -| <==      Total: 1
+2019-03-27 01:20:57.571 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==>  Preparing: SELECT t.*, CONCAT(substr(t.start_time,1,16),'-',substr(t.end_time,12,5)) as check_period, (select a.code_name from sys_code a where a.code_flag='task_status' and a.code_value=t.check_status) as check_status_name, ca.appeal_result as appeal_result FROM check_task t left join t_sys_users u on t.checked_person=u.id left join check_appeal ca on t.id=ca.task_id WHERE 1=1 AND t.check_status in ( ? , ? ) order by t.start_time desc limit ?,? 
+2019-03-27 01:20:57.572 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| ==> Parameters: 2(Integer), 3(Integer), 0(Integer), 10(Integer)
+2019-03-27 01:20:57.584 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TaskDao.getListInStatus [159] -| <==      Total: 10
+2019-03-27 01:20:59.527 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:20:59.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:20:59.529 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: admin(String)
+2019-03-27 01:20:59.551 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:20:59.552 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:20:59.552 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:59.579 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 69
+2019-03-27 01:20:59.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:20:59.580 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 1(Integer)
+2019-03-27 01:20:59.589 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:20:59.592 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user admin, setting security context
+2019-03-27 01:20:59.594 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication admin
+2019-03-27 01:21:03.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.206 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.216 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.217 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.225 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.226 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.227 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.234 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.235 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.236 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.246 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.247 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.248 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.258 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.259 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.260 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.268 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.435 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.435 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.435 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.437 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.438 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.439 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.440 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.447 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.448 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.449 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.458 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.460 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.461 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.462 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.463 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.470 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.471 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.471 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.472 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.472 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.473 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.474 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.474 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.474 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.476 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.480 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.480 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
+2019-03-27 01:21:03.481 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
+2019-03-27 01:21:03.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.482 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.483 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.483 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.484 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.484 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
+2019-03-27 01:21:03.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
+2019-03-27 01:21:03.488 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.489 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:21:03.490 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
+2019-03-27 01:21:03.490 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.491 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
+2019-03-27 01:21:03.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
+2019-03-27 01:21:03.496 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.496 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==>  Preparing: SELECT id,menuname,url,iconClass,parentId,type,sortNo,status FROM sys_menu where status!=-1 order by sortNo,id 
+2019-03-27 01:21:03.497 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| ==> Parameters: 
+2019-03-27 01:21:03.498 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2019-03-27 01:21:03.498 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.500 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.509 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.MenuDao.getMenu [159] -| <==      Total: 79
+2019-03-27 01:21:03.510 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.511 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.521 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.557 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.558 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.558 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.560 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.560 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.561 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.562 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.570 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.571 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.572 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.573 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.574 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.583 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.584 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.585 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.586 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.586 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.587 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.594 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.595 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.597 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.598 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.598 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.598 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.600 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.601 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_wrecker_group a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:21:03.601 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| ==> Parameters: 
+2019-03-27 01:21:03.602 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_road_manager a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:21:03.603 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.603 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| ==> Parameters: 
+2019-03-27 01:21:03.604 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==>  Preparing: SELECT *, b.parentid FROM t_br_layer_fee_station a left join t_sys_organ b on a.organ_id=b.id 
+2019-03-27 01:21:03.604 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| ==> Parameters: 
+2019-03-27 01:21:03.611 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllWG [159] -| <==      Total: 5
+2019-03-27 01:21:03.613 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllRM [159] -| <==      Total: 3
+2019-03-27 01:21:03.617 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAllFS [159] -| <==      Total: 22
+2019-03-27 01:21:03.625 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.626 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.627 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.634 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.635 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.636 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.643 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.644 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.645 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.653 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.656 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.658 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.664 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 AND t.positionid in ( ? , ? , ? , ? ) order by workno 
+2019-03-27 01:21:03.665 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 1(Integer), 4(Integer), 5(Integer), 6(Integer)
+2019-03-27 01:21:03.722 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 591
+2019-03-27 01:21:03.752 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.753 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.762 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.763 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.772 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.773 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.779 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.781 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.782 |-INFO  [http-nio-8089-exec-9] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 AND department_id=? 
+2019-03-27 01:21:03.786 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 1(Long)
+2019-03-27 01:21:03.793 |-DEBUG [http-nio-8089-exec-9] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:21:03.892 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:03.894 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:03.903 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:03.904 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:03.905 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.915 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:03.916 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:03.917 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:03.928 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:03.929 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:03.931 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:03.939 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM (SELECT t.*, CONCAT(substr(t.start_time, 1, 16), '-', substr(t.end_time, 12, 5)) AS check_period, (SELECT a.code_name FROM sys_code a WHERE a.code_flag = 'task_status' AND a.code_value = t.check_status) AS check_status_name, ca.appeal_result AS appeal_result FROM check_task t LEFT JOIN t_sys_users u ON t.checked_person = u.id LEFT JOIN check_appeal ca ON t.id = ca.task_id WHERE 1 = 1 AND t.check_status = ? AND t.checked_dept = ?) table_count 
+2019-03-27 01:21:03.940 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| ==> Parameters: 5(Integer), 46(Long)
+2019-03-27 01:21:03.949 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.TaskDao.getList_COUNT [159] -| <==      Total: 1
+2019-03-27 01:21:05.666 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.667 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:05.668 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:05.679 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:05.679 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.679 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.680 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:05.681 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:05.689 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:05.690 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:05.690 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.691 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.692 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:05.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:05.693 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:05.700 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.701 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:05.703 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:05.705 |-INFO  [http-nio-8089-exec-10] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.707 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==>  Preparing: SELECT * FROM sys_job WHERE 1=1 
+2019-03-27 01:21:05.708 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| ==> Parameters: 
+2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:05.710 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:05.713 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:05.713 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:05.716 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.716 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:05.716 |-DEBUG [http-nio-8089-exec-10] com.xintong.visualinspection.dao.master.JobDao.getJobList [159] -| <==      Total: 23
+2019-03-27 01:21:05.720 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==>  Preparing: SELECT id,organname,remark,parentid,classtype,organcode,isshow,deptype,status FROM t_sys_organ where 1=1 and status = ? 
+2019-03-27 01:21:05.721 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| ==> Parameters: 0(Integer)
+2019-03-27 01:21:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==>  Preparing: SELECT * FROM sys_role where 1=1 
+2019-03-27 01:21:05.722 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| ==> Parameters: 
+2019-03-27 01:21:05.729 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRole [159] -| <==      Total: 10
+2019-03-27 01:21:05.730 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.DepartmentDao.getOrgan [159] -| <==      Total: 32
+2019-03-27 01:21:08.529 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:08.529 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:08.533 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:08.534 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:08.542 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.543 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.544 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.552 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.554 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.564 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.565 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.565 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:08.566 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:08.567 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:08.568 |-INFO  [http-nio-8089-exec-3] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:08.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==>  Preparing: SELECT t.* , tso.organname AS fee_station_name,tso.parentid AS parent_organid ,deleted_user.starttime AS invalidtime FROM t_sys_users t LEFT JOIN t_sys_organ tso ON t.organid = tso.id LEFT JOIN (select t_s_y.id,date_sub(t_p.starttime,interval 1 hour) as starttime from t_sys_users t_s_y LEFT join (select starttime,endtime from check_task_period ) t_p on DELETE_TIME >= starttime and DELETE_TIME < endtime WHERE STATUS =-1 and DELETE_TIME >= t_p.starttime and DELETE_TIME < t_p.endtime ) deleted_user on deleted_user.id = t.id where 1=1 and t.status>0 and t.organid = ? order by workno 
+2019-03-27 01:21:08.569 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| ==> Parameters: 46(Integer)
+2019-03-27 01:21:08.580 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.getUsers [159] -| <==      Total: 21
+2019-03-27 01:21:08.581 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.581 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2019-03-27 01:21:08.583 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| ==> Parameters: 46(Long), 1(Long)
+2019-03-27 01:21:08.594 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName_COUNT [159] -| <==      Total: 1
+2019-03-27 01:21:08.595 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2019-03-27 01:21:08.595 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| ==> Parameters: 46(Long), 1(Long), 0(Integer), 10(Integer)
+2019-03-27 01:21:08.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:08.602 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:08.603 |-DEBUG [http-nio-8089-exec-3] com.xintong.visualinspection.dao.master.TeamDao.getTeamByName [159] -| <==      Total: 1
+2019-03-27 01:21:08.610 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.611 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.612 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3112(Integer)
+2019-03-27 01:21:08.623 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.625 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.625 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3112(Integer)
+2019-03-27 01:21:08.632 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.633 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.633 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3113(Integer)
+2019-03-27 01:21:08.645 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 7
+2019-03-27 01:21:08.646 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.647 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3113(Integer)
+2019-03-27 01:21:08.656 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.658 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2637(Integer)
+2019-03-27 01:21:08.669 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:08.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.670 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2637(Integer)
+2019-03-27 01:21:08.680 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.680 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.681 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2639(Integer)
+2019-03-27 01:21:08.693 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 28
+2019-03-27 01:21:08.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.694 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2639(Integer)
+2019-03-27 01:21:08.702 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.703 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.704 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2644(Integer)
+2019-03-27 01:21:08.714 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 7
+2019-03-27 01:21:08.715 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.716 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2644(Integer)
+2019-03-27 01:21:08.724 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.725 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2646(Integer)
+2019-03-27 01:21:08.735 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 7
+2019-03-27 01:21:08.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.736 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2646(Integer)
+2019-03-27 01:21:08.744 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.745 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.746 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2640(Integer)
+2019-03-27 01:21:08.754 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 7
+2019-03-27 01:21:08.755 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.756 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2640(Integer)
+2019-03-27 01:21:08.765 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.767 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2650(Integer)
+2019-03-27 01:21:08.777 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 7
+2019-03-27 01:21:08.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.778 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2650(Integer)
+2019-03-27 01:21:08.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.787 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.788 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2642(Integer)
+2019-03-27 01:21:08.798 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.799 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.800 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2642(Integer)
+2019-03-27 01:21:08.807 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.809 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.810 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2645(Integer)
+2019-03-27 01:21:08.820 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.821 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.822 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2645(Integer)
+2019-03-27 01:21:08.830 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.831 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.832 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2641(Integer)
+2019-03-27 01:21:08.840 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.841 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.842 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2641(Integer)
+2019-03-27 01:21:08.850 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.851 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3114(Integer)
+2019-03-27 01:21:08.860 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.861 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3114(Integer)
+2019-03-27 01:21:08.869 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 0
+2019-03-27 01:21:08.870 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.871 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2653(Integer)
+2019-03-27 01:21:08.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.880 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.881 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2653(Integer)
+2019-03-27 01:21:08.891 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.892 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.892 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2648(Integer)
+2019-03-27 01:21:08.901 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.902 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.903 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2648(Integer)
+2019-03-27 01:21:08.912 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.914 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2651(Integer)
+2019-03-27 01:21:08.925 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.927 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2651(Integer)
+2019-03-27 01:21:08.935 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.935 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.936 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2647(Integer)
+2019-03-27 01:21:08.944 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.945 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.946 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2647(Integer)
+2019-03-27 01:21:08.955 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.957 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.958 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2654(Integer)
+2019-03-27 01:21:08.970 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.971 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2654(Integer)
+2019-03-27 01:21:08.981 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:08.982 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:08.983 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2649(Integer)
+2019-03-27 01:21:08.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:08.994 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:08.995 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2649(Integer)
+2019-03-27 01:21:09.004 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.006 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.007 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2626(Integer)
+2019-03-27 01:21:09.016 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:09.018 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.019 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2626(Integer)
+2019-03-27 01:21:09.029 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.030 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.031 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 2477(Integer)
+2019-03-27 01:21:09.039 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 0
+2019-03-27 01:21:09.040 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.041 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 2477(Integer)
+2019-03-27 01:21:09.049 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.093 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.094 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:09.095 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:09.095 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:09.096 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:09.097 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:09.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:09.098 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:09.104 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:09.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:09.105 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.106 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:09.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:09.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.117 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.119 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.121 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:09.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:09.122 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.131 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:09.131 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.131 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:09.132 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.132 |-INFO  [http-nio-8089-exec-8] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.133 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:09.133 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:09.135 |-INFO  [http-nio-8089-exec-1] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.135 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:09.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:09.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
+2019-03-27 01:21:09.143 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==>  Preparing: SELECT count(0) FROM sys_team WHERE 1 = 1 AND dept_id = ? AND type = ? 
+2019-03-27 01:21:09.144 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| ==> Parameters: 46(Long), 1(Long)
+2019-03-27 01:21:09.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==>  Preparing: SELECT * FROM sys_class_type where 1=1 
+2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2019-03-27 01:21:09.146 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| ==> Parameters: 
+2019-03-27 01:21:09.147 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-01 00:00:00.0(Timestamp), 2019-03-31 23:59:59.0(Timestamp), 1(Integer)
+2019-03-27 01:21:09.153 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList_COUNT [159] -| <==      Total: 1
+2019-03-27 01:21:09.154 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE 1=1 AND dept_id = ? AND type = ? limit ?,? 
+2019-03-27 01:21:09.155 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| ==> Parameters: 46(Long), 1(Long), 0(Integer), 50(Integer)
+2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-1] com.xintong.visualinspection.dao.master.TeamClassDao.getClassCode [159] -| <==      Total: 3
+2019-03-27 01:21:09.157 |-DEBUG [http-nio-8089-exec-8] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 3
+2019-03-27 01:21:09.164 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamDao.getList [159] -| <==      Total: 1
+2019-03-27 01:21:10.496 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:10.497 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:10.498 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:10.506 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:10.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:10.507 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:10.517 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:10.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:10.518 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:10.526 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:10.528 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:10.528 |-INFO  [http-nio-8089-exec-4] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:10.531 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,st.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ORDER BY t.work_date ASC ,t.class_type ASC) tc WHERE tc.type =? 
+2019-03-27 01:21:10.533 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| ==> Parameters: 46(Long), 2019-03-27 00:00:00.0(Timestamp), 2019-03-27 00:00:00.0(Timestamp), 1(Integer)
+2019-03-27 01:21:10.540 |-DEBUG [http-nio-8089-exec-4] com.xintong.visualinspection.dao.master.TeamClassDao.getClassListForCharge [159] -| <==      Total: 0
+2019-03-27 01:21:12.522 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:12.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:12.524 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:12.535 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:12.536 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:12.537 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:12.547 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:12.556 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:12.558 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:12.559 |-INFO  [http-nio-8089-exec-7] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:12.561 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2019-03-27 01:21:12.562 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-27 00:00:00.0(Timestamp), 2019-03-27 00:00:00.0(Timestamp), 1(Integer)
+2019-03-27 01:21:12.570 |-DEBUG [http-nio-8089-exec-7] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 0
+2019-03-27 01:21:15.525 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:15.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:15.526 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:15.535 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:15.536 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:15.537 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:15.547 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:15.554 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:15.556 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:15.558 |-INFO  [http-nio-8089-exec-6] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:15.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| ==>  Preparing: SELECT * FROM sys_code WHERE code_flag=? and code_value=? and valid!=0 
+2019-03-27 01:21:15.564 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| ==> Parameters: record_class_days(String), 1(Integer)
+2019-03-27 01:21:15.573 |-DEBUG [http-nio-8089-exec-6] com.xintong.visualinspection.dao.master.ConstantDao.getByFlagAndValue [159] -| <==      Total: 1
+2019-03-27 01:21:15.586 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:15.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:15.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:15.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:15.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:15.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:15.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:15.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:15.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:15.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:15.624 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:15.626 |-INFO  [http-nio-8089-exec-2] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:15.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==>  Preparing: SELECT * FROM t_sys_organ 
+2019-03-27 01:21:15.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| ==> Parameters: 
+2019-03-27 01:21:15.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getAll [159] -| <==      Total: 34
+2019-03-27 01:21:15.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:15.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
+2019-03-27 01:21:15.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:15.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:15.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 46(Long)
+2019-03-27 01:21:15.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:15.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:15.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:15.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:15.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:15.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
+2019-03-27 01:21:15.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:15.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:15.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 1(Integer), null, null
+2019-03-27 01:21:15.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:15.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:15.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 2(Integer), null, null
+2019-03-27 01:21:15.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:15.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:15.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), 3(Integer), null, null
+2019-03-27 01:21:16.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:16.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:16.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.154 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:16.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:16.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:16.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 3(Integer), 152(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -6(Integer), null, null
+2019-03-27 01:21:16.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:16.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:16.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:16.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
+2019-03-27 01:21:16.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:16.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 1(Integer), null, null
+2019-03-27 01:21:16.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 2(Integer), null, null
+2019-03-27 01:21:16.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), 3(Integer), null, null
+2019-03-27 01:21:16.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:16.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:16.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:16.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:16.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:16.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:16.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:16.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 1(Integer), 152(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -6(Integer), null, null
+2019-03-27 01:21:17.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:17.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:17.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:17.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 46(Integer)
+2019-03-27 01:21:17.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:17.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 1(Integer), null, null
+2019-03-27 01:21:17.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 2(Integer), null, null
+2019-03-27 01:21:17.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), 3(Integer), null, null
+2019-03-27 01:21:17.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:17.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:17.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:17.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.487 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:17.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:17.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 46(Long), 3232(Long), 2(Integer), 152(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -6(Integer), null, null
+2019-03-27 01:21:17.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:17.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), null
+2019-03-27 01:21:17.693 |-INFO  [http-nio-8089-exec-2] org.springframework.beans.factory.xml.XmlBeanDefinitionReader [317] -| Loading XML bean definitions from class path resource [org/springframework/jdbc/support/sql-error-codes.xml]
+2019-03-27 01:21:17.734 |-INFO  [http-nio-8089-exec-2] org.springframework.jdbc.support.SQLErrorCodesFactory [127] -| SQLErrorCodes loaded: [DB2, Derby, H2, HSQL, Informix, MS-SQL, MySQL, Oracle, PostgreSQL, Sybase, Hana]
+2019-03-27 01:21:17.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:17.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
+2019-03-27 01:21:17.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:17.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:17.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 113(Long)
+2019-03-27 01:21:17.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:17.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:17.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450105(String)
+2019-03-27 01:21:17.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:17.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:17.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 18
+2019-03-27 01:21:17.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:17.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
+2019-03-27 01:21:17.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:17.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:17.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
+2019-03-27 01:21:17.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:17.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:17.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 114(Long)
+2019-03-27 01:21:17.865 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:17.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:17.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:17.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:17.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
+2019-03-27 01:21:17.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:17.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:18.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:18.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.087 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:18.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:18.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.221 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 3(Integer), 150(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:18.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:18.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:18.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:18.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
+2019-03-27 01:21:18.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:18.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:18.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.410 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.410 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:18.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.465 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:18.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:18.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 1(Integer), 150(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:18.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:18.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232,3200,3201,3202,3203,3204,3205,3206,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3207,3222,3223,3224,3225,3226,3227(String), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:18.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:18.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 114(Integer)
+2019-03-27 01:21:18.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:18.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:18.764 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:18.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.821 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:18.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:18.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:18.931 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3232(Long), 2(Integer), 150(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:18.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:18.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:18.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450104(String)
+2019-03-27 01:21:19.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:19.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:19.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 40
+2019-03-27 01:21:19.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
+2019-03-27 01:21:19.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:19.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:19.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104024(String)
+2019-03-27 01:21:19.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.169 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:19.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.178 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:19.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.188 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.189 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:19.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:19.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:19.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3220(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:19.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
+2019-03-27 01:21:19.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:19.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
+2019-03-27 01:21:19.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104028(String)
+2019-03-27 01:21:19.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:19.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
+2019-03-27 01:21:19.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.306 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:19.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
+2019-03-27 01:21:19.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:19.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3223(Long), 2019-03-26 15:53:16.0(Timestamp)
+2019-03-27 01:21:19.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
+2019-03-27 01:21:19.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:19.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:45.0(Timestamp)
+2019-03-27 01:21:19.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:19.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:19.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3221(Long), 3(Integer), 150(Long), 2019-03-25 22:49:45.0(Timestamp), 2019-03-26 07:53:45.0(Timestamp), -4(Integer), 518183(Long), 陈芳(String), 3203(Long)
+2019-03-27 01:21:19.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:19.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104025(String)
+2019-03-27 01:21:19.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:19.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
+2019-03-27 01:21:19.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.466 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
+2019-03-27 01:21:19.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:19.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.502 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3221(Long), 2019-03-25 22:49:46.0(Timestamp)
+2019-03-27 01:21:19.511 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
+2019-03-27 01:21:19.521 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.522 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:19.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:53:59.0(Timestamp)
+2019-03-27 01:21:19.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:19.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:19.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3213(Long), 1(Integer), 150(Long), 2019-03-26 07:53:59.0(Timestamp), 2019-03-26 15:53:37.0(Timestamp), -4(Integer), 518188(Long), 李香(String), 3203(Long)
+2019-03-27 01:21:19.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:19.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104016(String)
+2019-03-27 01:21:19.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:19.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
+2019-03-27 01:21:19.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:19.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
+2019-03-27 01:21:19.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:19.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3213(Long), 2019-03-26 07:54:00.0(Timestamp)
+2019-03-27 01:21:19.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
+2019-03-27 01:21:19.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:19.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:47.0(Timestamp)
+2019-03-27 01:21:19.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:19.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:19.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3225(Long), 2(Integer), 150(Long), 2019-03-26 15:53:47.0(Timestamp), 2019-03-26 22:51:19.0(Timestamp), -4(Integer), 518193(Long), 周雷(String), 3203(Long)
+2019-03-27 01:21:19.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:19.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104030(String)
+2019-03-27 01:21:19.783 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:19.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
+2019-03-27 01:21:19.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:19.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
+2019-03-27 01:21:19.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:19.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3225(Long), 2019-03-26 15:53:48.0(Timestamp)
+2019-03-27 01:21:19.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
+2019-03-27 01:21:19.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.866 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:53.0(Timestamp)
+2019-03-27 01:21:19.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.878 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104029(String)
+2019-03-27 01:21:19.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
+2019-03-27 01:21:19.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
+2019-03-27 01:21:19.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.925 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.936 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3224(Long), 2019-03-25 22:49:54.0(Timestamp)
+2019-03-27 01:21:19.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:19.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.958 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:12.0(Timestamp)
+2019-03-27 01:21:19.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:19.977 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:19.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:19.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:19.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:19.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:19.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:19.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
+2019-03-27 01:21:20.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
+2019-03-27 01:21:20.026 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.027 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 07:54:13.0(Timestamp)
+2019-03-27 01:21:20.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.045 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.046 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:20.052 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:39.0(Timestamp)
+2019-03-27 01:21:20.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:20.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.086 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
+2019-03-27 01:21:20.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.121 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
+2019-03-27 01:21:20.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:20.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 08:44:40.0(Timestamp)
+2019-03-27 01:21:20.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:20.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:20.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.177 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:07.0(Timestamp)
+2019-03-27 01:21:20.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104023(String)
+2019-03-27 01:21:20.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:20.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
+2019-03-27 01:21:20.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:20.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
+2019-03-27 01:21:20.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.240 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:20.248 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3219(Long), 2019-03-26 14:37:10.0(Timestamp)
+2019-03-27 01:21:20.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
+2019-03-27 01:21:20.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.270 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:20.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:03.0(Timestamp)
+2019-03-27 01:21:20.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:20.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 114(Long), 3226(Long), 2(Integer), 150(Long), 2019-03-26 15:53:03.0(Timestamp), 2019-03-26 22:51:03.0(Timestamp), -5(Integer), 518194(Long), 王路泉(String), 3203(Long)
+2019-03-27 01:21:20.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:20.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450104031(String)
+2019-03-27 01:21:20.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:20.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.366 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:20.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
+2019-03-27 01:21:20.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.394 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:20.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
+2019-03-27 01:21:20.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:20.435 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 114(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:20.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:20.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:20.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3226(Long), 2019-03-26 15:53:05.0(Timestamp)
+2019-03-27 01:21:20.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:20.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:20.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
+2019-03-27 01:21:20.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:20.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:20.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 115(Long)
+2019-03-27 01:21:20.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:20.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:20.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:20.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:20.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
+2019-03-27 01:21:20.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:20.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:20.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:20.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:20.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:20.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 3(Integer), 154(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:20.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:20.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:20.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:20.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:20.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
+2019-03-27 01:21:20.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:20.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:20.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:21.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:21.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:21.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:21.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 1(Integer), 154(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:21.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:21.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3743,3744,3745,3746,3749,3748,3747,3750,3764,3752,3753,3754,3761,3763,3759,3755,3757,3751,3760,3758,3756,3766,3767,3762,3765,3768(String), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:21.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:21.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 115(Integer)
+2019-03-27 01:21:21.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:21.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:21.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:21.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.486 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:21.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:21.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3232(Long), 2(Integer), 154(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:21.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:21.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:21.676 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450101(String)
+2019-03-27 01:21:21.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:21.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:21.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 36
+2019-03-27 01:21:21.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:21.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
+2019-03-27 01:21:21.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:21.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:21.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:21.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:21.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:21.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:19.0(Timestamp)
+2019-03-27 01:21:21.771 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:21.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3752(Long), 3(Integer), 154(Long), 2019-03-25 22:55:19.0(Timestamp), 2019-03-26 07:54:18.0(Timestamp), -2(Integer), 518196(Long), 秦军(String), 3743(Long)
+2019-03-27 01:21:21.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:21.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:21.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101012(String)
+2019-03-27 01:21:21.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:21.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:21.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:21.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:21.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:21.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
+2019-03-27 01:21:21.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:21.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:21.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:21.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:21.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:21.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
+2019-03-27 01:21:21.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:21.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:21.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:21.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:21.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:21.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3752(Long), 2019-03-25 22:55:20.0(Timestamp)
+2019-03-27 01:21:21.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:21.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:21.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
+2019-03-27 01:21:21.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:21.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:21.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:21.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:21.928 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:21.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:31.0(Timestamp)
+2019-03-27 01:21:21.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:21.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:21.940 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3751(Long), 1(Integer), 154(Long), 2019-03-26 07:54:31.0(Timestamp), 2019-03-26 15:55:26.0(Timestamp), -2(Integer), 518201(Long), 戴龙(String), 3743(Long)
+2019-03-27 01:21:21.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:21.997 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:21.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101020(String)
+2019-03-27 01:21:22.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:22.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
+2019-03-27 01:21:22.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:22.061 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.062 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
+2019-03-27 01:21:22.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.071 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.071 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:22.078 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3751(Long), 2019-03-26 07:54:32.0(Timestamp)
+2019-03-27 01:21:22.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
+2019-03-27 01:21:22.117 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:22.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:37.0(Timestamp)
+2019-03-27 01:21:22.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:22.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:22.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3754(Long), 2(Integer), 154(Long), 2019-03-26 15:55:37.0(Timestamp), 2019-03-26 22:54:03.0(Timestamp), -2(Integer), 518206(Long), 徐志新(String), 3743(Long)
+2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
+2019-03-27 01:21:22.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:22.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
+2019-03-27 01:21:22.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:22.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
+2019-03-27 01:21:22.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:22.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
+2019-03-27 01:21:22.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
+2019-03-27 01:21:22.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.281 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.282 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:22.290 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.291 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.292 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:37.0(Timestamp)
+2019-03-27 01:21:22.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:22.301 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:22.302 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3760(Long), 3(Integer), 154(Long), 2019-03-25 22:54:37.0(Timestamp), 2019-03-26 07:54:33.0(Timestamp), -3(Integer), 518197(Long), 倪青山(String), 3743(Long)
+2019-03-27 01:21:22.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:22.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101021(String)
+2019-03-27 01:21:22.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:22.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
+2019-03-27 01:21:22.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.384 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:22.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
+2019-03-27 01:21:22.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:22.427 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.428 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3760(Long), 2019-03-25 22:54:38.0(Timestamp)
+2019-03-27 01:21:22.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
+2019-03-27 01:21:22.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.448 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:22.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.458 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:41.0(Timestamp)
+2019-03-27 01:21:22.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:22.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:22.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3761(Long), 1(Integer), 154(Long), 2019-03-26 07:54:41.0(Timestamp), 2019-03-26 15:54:24.0(Timestamp), -3(Integer), 518202(Long), 何流(String), 3743(Long)
+2019-03-27 01:21:22.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:22.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101015(String)
+2019-03-27 01:21:22.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:22.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:22.568 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:22.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:22.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:22.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.625 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3761(Long), 2019-03-26 07:54:42.0(Timestamp)
+2019-03-27 01:21:22.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
+2019-03-27 01:21:22.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:22.656 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.657 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:38.0(Timestamp)
+2019-03-27 01:21:22.667 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101014(String)
+2019-03-27 01:21:22.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:22.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
+2019-03-27 01:21:22.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:22.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
+2019-03-27 01:21:22.716 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:22.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3754(Long), 2019-03-26 15:55:40.0(Timestamp)
+2019-03-27 01:21:22.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.740 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
+2019-03-27 01:21:22.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:22.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
+2019-03-27 01:21:22.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:22.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:22.770 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3759(Long), 3(Integer), 154(Long), 2019-03-25 22:54:13.0(Timestamp), 2019-03-26 07:53:42.0(Timestamp), -4(Integer), 518198(Long), 胡驿乔(String), 3743(Long)
+2019-03-27 01:21:22.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:22.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101017(String)
+2019-03-27 01:21:22.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:22.850 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
+2019-03-27 01:21:22.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:22.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
+2019-03-27 01:21:22.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:22.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.894 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3759(Long), 2019-03-25 22:54:13.0(Timestamp)
+2019-03-27 01:21:22.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:22.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
+2019-03-27 01:21:22.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:22.922 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:22.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:22.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:03.0(Timestamp)
+2019-03-27 01:21:22.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:22.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:22.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3756(Long), 1(Integer), 154(Long), 2019-03-26 07:54:03.0(Timestamp), 2019-03-26 15:54:57.0(Timestamp), -4(Integer), 518203(Long), 李荣华(String), 3743(Long)
+2019-03-27 01:21:22.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:22.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:22.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101023(String)
+2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:22.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:23.012 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
+2019-03-27 01:21:23.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.025 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:23.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
+2019-03-27 01:21:23.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 1(Integer), -4(Integer)
+2019-03-27 01:21:23.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3756(Long), 2019-03-26 07:54:04.0(Timestamp)
+2019-03-27 01:21:23.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:23.070 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
+2019-03-27 01:21:23.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:23.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:23.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
+2019-03-27 01:21:23.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:23.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.101 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 115(Long), 3765(Long), 2(Integer), 154(Long), 2019-03-26 15:55:31.0(Timestamp), 2019-03-26 22:53:42.0(Timestamp), -4(Integer), 518208(Long), 侍慧(String), 3743(Long)
+2019-03-27 01:21:23.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:23.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:23.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450101029(String)
+2019-03-27 01:21:23.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:23.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:23.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
+2019-03-27 01:21:23.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.198 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:23.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
+2019-03-27 01:21:23.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:23.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 115(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:23.228 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:23.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:23.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3765(Long), 2019-03-26 15:55:31.0(Timestamp)
+2019-03-27 01:21:23.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:23.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:23.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
+2019-03-27 01:21:23.246 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:23.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:23.247 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 116(Long)
+2019-03-27 01:21:23.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:23.257 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:23.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:23.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:23.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
+2019-03-27 01:21:23.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:23.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:23.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:23.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:23.495 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:23.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 3(Integer), 155(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:23.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:23.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:23.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:23.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
+2019-03-27 01:21:23.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:23.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:23.729 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:23.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:23.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:23.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.910 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:23.911 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 1(Integer), 155(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:23.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:23.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:23.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3701,3702,3703,3705,3706,3709,3707,3722,3721,3708,3715,3720,3723,3704,3736,3727,3741,3712,3724,3739,3731,3733,3742,3725,3729,3716,3728,3714,3710,3735,3711,3726,3719,3732,3734,3718,3738,3737,3713,3730,3717,3740(String), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:24.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:24.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 116(Integer)
+2019-03-27 01:21:24.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:24.038 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:24.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:24.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:24.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:24.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3232(Long), 2(Integer), 155(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:24.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450102(String)
+2019-03-27 01:21:24.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:24.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:24.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 41
+2019-03-27 01:21:24.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
+2019-03-27 01:21:24.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.455 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.456 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:24.467 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.468 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:29.0(Timestamp)
+2019-03-27 01:21:24.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:24.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 116(Long), 3719(Long), 1(Integer), 155(Long), 2019-03-26 07:56:29.0(Timestamp), 2019-03-26 15:56:14.0(Timestamp), -5(Integer), 518219(Long), 杨玉龙(String), 3701(Long)
+2019-03-27 01:21:24.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:24.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102043(String)
+2019-03-27 01:21:24.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:24.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
+2019-03-27 01:21:24.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:24.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
+2019-03-27 01:21:24.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.595 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.595 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 1(Integer), -5(Integer)
+2019-03-27 01:21:24.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.603 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.604 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3719(Long), 2019-03-26 07:56:30.0(Timestamp)
+2019-03-27 01:21:24.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
+2019-03-27 01:21:24.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:24.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
+2019-03-27 01:21:24.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:24.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 116(Long), 3720(Long), 2(Integer), 155(Long), 2019-03-26 15:58:04.0(Timestamp), 2019-03-26 17:55:20.0(Timestamp), -5(Integer), 518224(Long), 万爱平(String), 3701(Long)
+2019-03-27 01:21:24.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:24.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
+2019-03-27 01:21:24.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:24.714 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.715 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
+2019-03-27 01:21:24.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.726 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:24.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.738 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.739 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
+2019-03-27 01:21:24.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.749 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 2(Integer), -5(Integer)
+2019-03-27 01:21:24.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.759 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 15:58:04.0(Timestamp)
+2019-03-27 01:21:24.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
+2019-03-27 01:21:24.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.777 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:24.787 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.788 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
+2019-03-27 01:21:24.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.799 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102015(String)
+2019-03-27 01:21:24.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:24.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
+2019-03-27 01:21:24.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:24.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
+2019-03-27 01:21:24.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -5(Integer)
+2019-03-27 01:21:24.858 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:24.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:24.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3720(Long), 2019-03-26 17:55:22.0(Timestamp)
+2019-03-27 01:21:24.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:24.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:24.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450102048(String)
+2019-03-27 01:21:24.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:24.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:24.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 116(Long), 3(Integer), -6(Integer)
+2019-03-27 01:21:24.891 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:24.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:24.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
+2019-03-27 01:21:24.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:24.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:24.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 117(Long)
+2019-03-27 01:21:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:24.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:24.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:24.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:24.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:24.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
+2019-03-27 01:21:24.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:24.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:24.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:25.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:25.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:25.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 3(Integer), 153(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:25.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:25.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:25.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:25.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
+2019-03-27 01:21:25.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:25.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:25.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.387 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:25.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:25.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:25.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 1(Integer), 153(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:25.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:25.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3116,3118,3119,3120,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142(String), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:25.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:25.675 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 117(Integer)
+2019-03-27 01:21:25.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:25.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:25.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:25.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.798 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:25.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:25.902 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.903 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:25.903 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3232(Long), 2(Integer), 153(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:25.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:25.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:25.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450103(String)
+2019-03-27 01:21:26.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:26.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:26.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 18
+2019-03-27 01:21:26.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103024(String)
+2019-03-27 01:21:26.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:26.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3139(Long), 2019-03-25 22:56:17.0(Timestamp)
+2019-03-27 01:21:26.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3139(Long), 3(Integer), 153(Long), 2019-03-25 22:56:17.0(Timestamp), 2019-03-26 07:59:08.0(Timestamp), -1(Integer), 518225(Long), 陆捷(String), 3116(Long)
+2019-03-27 01:21:26.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:26.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3139(Long), 2019-03-25 22:56:17.0(Timestamp)
+2019-03-27 01:21:26.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103017(String)
+2019-03-27 01:21:26.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:26.157 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.158 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3132(Long), 2019-03-26 07:59:16.0(Timestamp)
+2019-03-27 01:21:26.167 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.168 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.171 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3132(Long), 1(Integer), 153(Long), 2019-03-26 07:59:16.0(Timestamp), 2019-03-26 15:54:51.0(Timestamp), -1(Integer), 518230(Long), 徐冬冬(String), 3116(Long)
+2019-03-27 01:21:26.229 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.230 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:26.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3132(Long), 2019-03-26 07:59:16.0(Timestamp)
+2019-03-27 01:21:26.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103026(String)
+2019-03-27 01:21:26.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.261 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:26.271 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3141(Long), 2019-03-26 15:55:07.0(Timestamp)
+2019-03-27 01:21:26.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.280 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3141(Long), 2(Integer), 153(Long), 2019-03-26 15:55:07.0(Timestamp), 2019-03-26 23:00:26.0(Timestamp), -1(Integer), 518235(Long), 叶亮(String), 3116(Long)
+2019-03-27 01:21:26.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:26.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3141(Long), 2019-03-26 15:55:07.0(Timestamp)
+2019-03-27 01:21:26.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
+2019-03-27 01:21:26.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.377 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.385 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.386 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
+2019-03-27 01:21:26.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3138(Long), 3(Integer), 153(Long), 2019-03-25 22:56:50.0(Timestamp), 2019-03-26 08:01:55.0(Timestamp), -2(Integer), 518226(Long), 陈勇(String), 3116(Long)
+2019-03-27 01:21:26.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103023(String)
+2019-03-27 01:21:26.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
+2019-03-27 01:21:26.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
+2019-03-27 01:21:26.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.501 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.510 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3138(Long), 2019-03-25 22:56:50.0(Timestamp)
+2019-03-27 01:21:26.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
+2019-03-27 01:21:26.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.539 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
+2019-03-27 01:21:26.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3136(Long), 3(Integer), 153(Long), 2019-03-26 08:02:00.0(Timestamp), 2019-03-26 15:54:48.0(Timestamp), -2(Integer), 518226(Long), 陈勇亮(String), 3116(Long)
+2019-03-27 01:21:26.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103021(String)
+2019-03-27 01:21:26.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.634 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
+2019-03-27 01:21:26.645 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.646 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
+2019-03-27 01:21:26.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:26.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.682 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3136(Long), 2019-03-26 08:02:00.0(Timestamp)
+2019-03-27 01:21:26.693 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.694 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
+2019-03-27 01:21:26.703 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
+2019-03-27 01:21:26.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:26.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.722 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 117(Long), 3135(Long), 2(Integer), 153(Long), 2019-03-26 15:54:55.0(Timestamp), 2019-03-26 23:00:51.0(Timestamp), -2(Integer), 518236(Long), 褚国梁(String), 3116(Long)
+2019-03-27 01:21:26.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:26.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:26.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450103020(String)
+2019-03-27 01:21:26.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:26.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:26.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
+2019-03-27 01:21:26.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:26.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
+2019-03-27 01:21:26.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:26.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 117(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:26.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:26.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:26.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3135(Long), 2019-03-26 15:54:55.0(Timestamp)
+2019-03-27 01:21:26.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:26.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:26.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
+2019-03-27 01:21:26.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:26.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:26.873 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 118(Long)
+2019-03-27 01:21:26.883 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:26.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:26.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:26.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:26.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:26.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
+2019-03-27 01:21:26.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:26.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:26.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:27.018 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.020 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:27.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:27.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:27.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 3(Integer), 156(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:27.241 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.242 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:27.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:27.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:27.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
+2019-03-27 01:21:27.309 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:27.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.310 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:27.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:27.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:27.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.476 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:27.529 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 1(Integer), 156(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:27.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:27.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3233,3234,3235,3236,3237,3238,3239,3242,3240,3243,3241,3246,3244,3245,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256(String), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:27.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:27.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 118(Integer)
+2019-03-27 01:21:27.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:27.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:27.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:27.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:27.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:27.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:27.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3232(Long), 2(Integer), 156(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:27.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:27.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:27.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450201(String)
+2019-03-27 01:21:27.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:27.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:28.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 24
+2019-03-27 01:21:28.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
+2019-03-27 01:21:28.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.044 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
+2019-03-27 01:21:28.053 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3242(Long), 3(Integer), 156(Long), 2019-03-25 23:01:55.0(Timestamp), 2019-03-26 08:01:53.0(Timestamp), -1(Integer), 518240(Long), 李达(String), 3233(Long)
+2019-03-27 01:21:28.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201012(String)
+2019-03-27 01:21:28.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
+2019-03-27 01:21:28.137 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.138 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
+2019-03-27 01:21:28.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.176 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3242(Long), 2019-03-25 23:01:55.0(Timestamp)
+2019-03-27 01:21:28.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
+2019-03-27 01:21:28.194 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.195 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
+2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3252(Long), 3(Integer), 156(Long), 2019-03-26 08:02:09.0(Timestamp), 2019-03-26 16:04:13.0(Timestamp), -1(Integer), 518240(Long), 程森(String), 3233(Long)
+2019-03-27 01:21:28.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201026(String)
+2019-03-27 01:21:28.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
+2019-03-27 01:21:28.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
+2019-03-27 01:21:28.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.323 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.324 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3252(Long), 2019-03-26 08:02:09.0(Timestamp)
+2019-03-27 01:21:28.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.344 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
+2019-03-27 01:21:28.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.360 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.361 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
+2019-03-27 01:21:28.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.372 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.373 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3245(Long), 3(Integer), 156(Long), 2019-03-26 16:04:42.0(Timestamp), 2019-03-26 22:59:37.0(Timestamp), -1(Integer), 518240(Long), 姚军(String), 3233(Long)
+2019-03-27 01:21:28.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201019(String)
+2019-03-27 01:21:28.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
+2019-03-27 01:21:28.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
+2019-03-27 01:21:28.480 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:28.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.491 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3245(Long), 2019-03-26 16:04:42.0(Timestamp)
+2019-03-27 01:21:28.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.500 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
+2019-03-27 01:21:28.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:07.0(Timestamp)
+2019-03-27 01:21:28.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3248(Long), 3(Integer), 156(Long), 2019-03-25 23:03:07.0(Timestamp), 2019-03-26 08:01:56.0(Timestamp), -2(Integer), 518241(Long), 周德巍(String), 3233(Long)
+2019-03-27 01:21:28.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.589 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201021(String)
+2019-03-27 01:21:28.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.611 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.612 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
+2019-03-27 01:21:28.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
+2019-03-27 01:21:28.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.647 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3248(Long), 2019-03-25 23:03:08.0(Timestamp)
+2019-03-27 01:21:28.658 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.659 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
+2019-03-27 01:21:28.670 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
+2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.690 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3250(Long), 3(Integer), 156(Long), 2019-03-26 08:02:19.0(Timestamp), 2019-03-26 16:04:43.0(Timestamp), -2(Integer), 518241(Long), 成洪杰(String), 3233(Long)
+2019-03-27 01:21:28.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.785 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.786 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201023(String)
+2019-03-27 01:21:28.794 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
+2019-03-27 01:21:28.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.829 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
+2019-03-27 01:21:28.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.848 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.849 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3250(Long), 2019-03-26 08:02:19.0(Timestamp)
+2019-03-27 01:21:28.859 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
+2019-03-27 01:21:28.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.869 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:49.0(Timestamp)
+2019-03-27 01:21:28.887 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:28.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:28.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 118(Long), 3254(Long), 3(Integer), 156(Long), 2019-03-26 16:04:49.0(Timestamp), 2019-03-26 23:00:45.0(Timestamp), -2(Integer), 518241(Long), 凌晨(String), 3233(Long)
+2019-03-27 01:21:28.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:28.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:28.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450201029(String)
+2019-03-27 01:21:28.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:28.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.954 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
+2019-03-27 01:21:28.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.976 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:28.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:28.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:28.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
+2019-03-27 01:21:28.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:28.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:28.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 118(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:29.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:29.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:29.004 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3254(Long), 2019-03-26 16:04:50.0(Timestamp)
+2019-03-27 01:21:29.013 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:29.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:29.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
+2019-03-27 01:21:29.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:29.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:29.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 119(Long)
+2019-03-27 01:21:29.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:29.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:29.032 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:29.096 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:29.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
+2019-03-27 01:21:29.105 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:29.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:29.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.164 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:29.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:29.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.331 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.332 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 3(Integer), 157(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:29.388 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:29.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:29.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
+2019-03-27 01:21:29.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:29.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:29.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:29.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 1(Integer), 157(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:29.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:29.797 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3673,3674,3675,3676,3681,3682,3677,3678,3679,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3680,3697,3698,3699,3700(String), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:29.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:29.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 119(Integer)
+2019-03-27 01:21:29.879 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:29.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:29.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:29.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:29.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:30.021 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.022 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:30.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:30.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:30.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:30.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.132 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3232(Long), 2(Integer), 157(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:30.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:30.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:30.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450202(String)
+2019-03-27 01:21:30.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:30.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:30.272 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 46
+2019-03-27 01:21:30.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
+2019-03-27 01:21:30.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.294 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:54.0(Timestamp)
+2019-03-27 01:21:30.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:30.303 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3690(Long), 3(Integer), 157(Long), 2019-03-25 23:02:54.0(Timestamp), 2019-03-25 23:07:13.0(Timestamp), -1(Integer), 518255(Long), 张漩(String), 3673(Long)
+2019-03-27 01:21:30.364 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:30.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.365 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
+2019-03-27 01:21:30.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.376 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.382 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.383 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
+2019-03-27 01:21:30.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
+2019-03-27 01:21:30.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.415 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:02:56.0(Timestamp)
+2019-03-27 01:21:30.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
+2019-03-27 01:21:30.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.451 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:19.0(Timestamp)
+2019-03-27 01:21:30.461 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:30.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3693(Long), 3(Integer), 157(Long), 2019-03-25 23:07:19.0(Timestamp), 2019-03-26 08:01:47.0(Timestamp), -1(Integer), 518255(Long), 花敏(String), 3673(Long)
+2019-03-27 01:21:30.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:30.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
+2019-03-27 01:21:30.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
+2019-03-27 01:21:30.551 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
+2019-03-27 01:21:30.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.581 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.582 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.583 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-25 23:07:20.0(Timestamp)
+2019-03-27 01:21:30.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.592 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
+2019-03-27 01:21:30.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
+2019-03-27 01:21:30.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.622 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202025(String)
+2019-03-27 01:21:30.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
+2019-03-27 01:21:30.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
+2019-03-27 01:21:30.671 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3693(Long), 2019-03-26 08:01:53.0(Timestamp)
+2019-03-27 01:21:30.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
+2019-03-27 01:21:30.705 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:36.0(Timestamp)
+2019-03-27 01:21:30.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:30.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:30.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3694(Long), 3(Integer), 157(Long), 2019-03-26 16:02:36.0(Timestamp), 2019-03-26 23:09:32.0(Timestamp), -1(Integer), 518255(Long), 姜磊(String), 3673(Long)
+2019-03-27 01:21:30.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:30.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202026(String)
+2019-03-27 01:21:30.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.827 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.828 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
+2019-03-27 01:21:30.838 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.839 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.851 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.852 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
+2019-03-27 01:21:30.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:30.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3694(Long), 2019-03-26 16:02:37.0(Timestamp)
+2019-03-27 01:21:30.881 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.882 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
+2019-03-27 01:21:30.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:30.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:57.0(Timestamp)
+2019-03-27 01:21:30.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202022(String)
+2019-03-27 01:21:30.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.916 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:30.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
+2019-03-27 01:21:30.934 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.935 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.935 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:30.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
+2019-03-27 01:21:30.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:30.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3690(Long), 2019-03-25 23:06:58.0(Timestamp)
+2019-03-27 01:21:30.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:30.975 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
+2019-03-27 01:21:30.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:30.984 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:30.985 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:30.992 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:30.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:30.993 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:26.0(Timestamp)
+2019-03-27 01:21:31.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.002 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.003 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3695(Long), 3(Integer), 157(Long), 2019-03-26 08:01:26.0(Timestamp), 2019-03-26 16:00:42.0(Timestamp), -2(Integer), 518256(Long), 朱彬(String), 3673(Long)
+2019-03-27 01:21:31.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202027(String)
+2019-03-27 01:21:31.090 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.091 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.100 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
+2019-03-27 01:21:31.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.109 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
+2019-03-27 01:21:31.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3695(Long), 2019-03-26 08:01:27.0(Timestamp)
+2019-03-27 01:21:31.152 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.153 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
+2019-03-27 01:21:31.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:00:59.0(Timestamp)
+2019-03-27 01:21:31.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.187 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3699(Long), 3(Integer), 157(Long), 2019-03-26 16:00:59.0(Timestamp), 2019-03-26 23:07:39.0(Timestamp), -2(Integer), 518256(Long), 章绚(String), 3673(Long)
+2019-03-27 01:21:31.233 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.234 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
+2019-03-27 01:21:31.243 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.255 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
+2019-03-27 01:21:31.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.266 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
+2019-03-27 01:21:31.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:31.295 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.296 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 16:01:01.0(Timestamp)
+2019-03-27 01:21:31.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
+2019-03-27 01:21:31.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.327 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:10.0(Timestamp)
+2019-03-27 01:21:31.337 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.338 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.339 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3696(Long), 3(Integer), 157(Long), 2019-03-25 23:06:10.0(Timestamp), 2019-03-26 08:01:07.0(Timestamp), -3(Integer), 518257(Long), 程华(String), 3673(Long)
+2019-03-27 01:21:31.395 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.396 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202028(String)
+2019-03-27 01:21:31.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.417 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
+2019-03-27 01:21:31.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
+2019-03-27 01:21:31.449 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.450 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.459 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3696(Long), 2019-03-25 23:06:12.0(Timestamp)
+2019-03-27 01:21:31.472 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
+2019-03-27 01:21:31.481 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.490 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
+2019-03-27 01:21:31.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202034(String)
+2019-03-27 01:21:31.507 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
+2019-03-27 01:21:31.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.542 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
+2019-03-27 01:21:31.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.559 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.560 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3699(Long), 2019-03-26 08:01:36.0(Timestamp)
+2019-03-27 01:21:31.569 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.570 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
+2019-03-27 01:21:31.578 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.579 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.580 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.590 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.591 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:54.0(Timestamp)
+2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3697(Long), 3(Integer), 157(Long), 2019-03-26 16:02:54.0(Timestamp), 2019-03-26 23:07:19.0(Timestamp), -3(Integer), 518257(Long), 陈春霞(String), 3673(Long)
+2019-03-27 01:21:31.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.654 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202032(String)
+2019-03-27 01:21:31.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.664 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
+2019-03-27 01:21:31.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
+2019-03-27 01:21:31.708 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:31.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.717 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3697(Long), 2019-03-26 16:02:55.0(Timestamp)
+2019-03-27 01:21:31.724 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.725 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202009(String)
+2019-03-27 01:21:31.733 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:31.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3681(Long), 2019-03-25 23:01:27.0(Timestamp)
+2019-03-27 01:21:31.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3681(Long), 3(Integer), 157(Long), 2019-03-25 23:01:27.0(Timestamp), 2019-03-26 08:01:47.0(Timestamp), -4(Integer), 518258(Long), 颜晓强(String), 3673(Long)
+2019-03-27 01:21:31.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.808 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:31.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3681(Long), 2019-03-25 23:01:27.0(Timestamp)
+2019-03-27 01:21:31.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202018(String)
+2019-03-27 01:21:31.843 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:31.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.853 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3686(Long), 2019-03-26 08:02:28.0(Timestamp)
+2019-03-27 01:21:31.860 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.861 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.862 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3686(Long), 3(Integer), 157(Long), 2019-03-26 08:02:28.0(Timestamp), 2019-03-26 15:58:39.0(Timestamp), -4(Integer), 518258(Long), 张晓春(String), 3673(Long)
+2019-03-27 01:21:31.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:31.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.920 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 3(Integer), -4(Integer)
+2019-03-27 01:21:31.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.932 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.933 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3686(Long), 2019-03-26 08:02:28.0(Timestamp)
+2019-03-27 01:21:31.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:31.943 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:31.944 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450202015(String)
+2019-03-27 01:21:31.951 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:31.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:31.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:31.960 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:31.961 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:31.961 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3683(Long), 2019-03-26 15:58:58.0(Timestamp)
+2019-03-27 01:21:31.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:31.970 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:31.970 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 119(Long), 3683(Long), 2(Integer), 157(Long), 2019-03-26 15:58:58.0(Timestamp), 2019-03-26 23:07:22.0(Timestamp), -4(Integer), 518268(Long), 殷骥(String), 3673(Long)
+2019-03-27 01:21:32.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:32.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:32.031 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 119(Long), 2(Integer), -4(Integer)
+2019-03-27 01:21:32.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:32.039 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:32.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3683(Long), 2019-03-26 15:58:58.0(Timestamp)
+2019-03-27 01:21:32.048 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:32.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:32.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
+2019-03-27 01:21:32.059 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:32.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:32.060 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 121(Long)
+2019-03-27 01:21:32.068 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:32.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:32.069 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:32.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:32.131 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
+2019-03-27 01:21:32.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:32.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:32.196 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:32.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:32.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.307 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.308 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:32.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 3(Integer), 151(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:32.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:32.419 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:32.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:32.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
+2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:32.540 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.541 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:32.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:32.652 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.653 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:32.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.707 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 1(Integer), 151(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:32.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:32.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3144,3145,3146,3163,3167,3164,3166,3165,3147,3169,3151,3159,3160,3155,3154,3150,3149,3156,3161,3148,3157,3162,3153,3158,3152,3168(String), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:32.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:32.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 121(Integer)
+2019-03-27 01:21:32.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:32.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:32.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:32.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:32.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:32.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:33.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:33.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:33.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:33.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:33.063 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:33.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3232(Long), 2(Integer), 151(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:33.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:33.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:33.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450203(String)
+2019-03-27 01:21:33.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:33.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:33.204 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 30
+2019-03-27 01:21:33.205 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.206 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203012(String)
+2019-03-27 01:21:33.213 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.215 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:33.222 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.223 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.223 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3169(Long), 2019-03-25 23:00:29.0(Timestamp)
+2019-03-27 01:21:33.231 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.232 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:33.238 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.239 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3169(Long), 2019-03-25 23:00:29.0(Timestamp)
+2019-03-27 01:21:33.249 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.250 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.251 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203014(String)
+2019-03-27 01:21:33.258 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.259 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.260 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:33.268 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.269 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3159(Long), 2019-03-26 07:55:28.0(Timestamp)
+2019-03-27 01:21:33.277 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.278 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.279 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:33.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.289 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3159(Long), 2019-03-26 07:55:28.0(Timestamp)
+2019-03-27 01:21:33.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.300 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203022(String)
+2019-03-27 01:21:33.317 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.318 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:33.326 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.328 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3148(Long), 2019-03-26 15:56:57.0(Timestamp)
+2019-03-27 01:21:33.335 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:33.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:33.336 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3148(Long), 2(Integer), 151(Long), 2019-03-26 15:56:57.0(Timestamp), 2019-03-26 23:06:21.0(Timestamp), -1(Integer), 518280(Long), 吕超(String), 3144(Long)
+2019-03-27 01:21:33.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:33.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:33.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3148(Long), 2019-03-26 15:56:57.0(Timestamp)
+2019-03-27 01:21:33.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.443 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
+2019-03-27 01:21:33.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.454 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:33.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.464 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:00:58.0(Timestamp)
+2019-03-27 01:21:33.473 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203028(String)
+2019-03-27 01:21:33.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.482 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:33.492 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.493 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
+2019-03-27 01:21:33.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:33.517 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
+2019-03-27 01:21:33.532 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.533 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.534 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:33.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3231(Long), 2019-03-25 23:01:01.0(Timestamp)
+2019-03-27 01:21:33.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
+2019-03-27 01:21:33.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.564 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:33.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:15.0(Timestamp)
+2019-03-27 01:21:33.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
+2019-03-27 01:21:33.594 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.596 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.597 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:33.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
+2019-03-27 01:21:33.615 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.616 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:33.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.633 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
+2019-03-27 01:21:33.642 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.643 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.644 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:33.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.662 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.663 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 07:56:16.0(Timestamp)
+2019-03-27 01:21:33.672 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.673 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.674 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
+2019-03-27 01:21:33.679 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.680 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.681 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:33.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.689 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.689 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:00.0(Timestamp)
+2019-03-27 01:21:33.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203021(String)
+2019-03-27 01:21:33.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.712 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:33.720 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.721 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
+2019-03-27 01:21:33.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:33.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.743 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
+2019-03-27 01:21:33.751 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:33.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3161(Long), 2019-03-26 15:59:01.0(Timestamp)
+2019-03-27 01:21:33.782 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.784 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
+2019-03-27 01:21:33.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:33.803 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.804 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.805 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:26.0(Timestamp)
+2019-03-27 01:21:33.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:33.814 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:33.815 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3156(Long), 3(Integer), 151(Long), 2019-03-25 23:01:26.0(Timestamp), 2019-03-26 07:56:57.0(Timestamp), -3(Integer), 518272(Long), 曹亚莉(String), 3144(Long)
+2019-03-27 01:21:33.874 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:33.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.875 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203020(String)
+2019-03-27 01:21:33.884 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:33.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
+2019-03-27 01:21:33.904 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:33.914 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.915 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
+2019-03-27 01:21:33.926 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.927 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:33.937 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3156(Long), 2019-03-25 23:01:27.0(Timestamp)
+2019-03-27 01:21:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.948 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
+2019-03-27 01:21:33.955 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.956 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.957 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:33.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.968 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.969 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
+2019-03-27 01:21:33.979 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:33.980 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:33.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203015(String)
+2019-03-27 01:21:33.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:33.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:33.989 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:33.995 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:33.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:33.996 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
+2019-03-27 01:21:34.005 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.006 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:34.014 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.015 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
+2019-03-27 01:21:34.023 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.024 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:34.033 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.034 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.035 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3160(Long), 2019-03-26 07:57:18.0(Timestamp)
+2019-03-27 01:21:34.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:34.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
+2019-03-27 01:21:34.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:34.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
+2019-03-27 01:21:34.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:34.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.066 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 121(Long), 3150(Long), 2(Integer), 151(Long), 2019-03-26 15:58:02.0(Timestamp), 2019-03-26 23:02:19.0(Timestamp), -3(Integer), 518282(Long), 张健(String), 3144(Long)
+2019-03-27 01:21:34.118 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:34.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:34.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450203018(String)
+2019-03-27 01:21:34.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:34.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.127 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:34.135 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.136 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
+2019-03-27 01:21:34.145 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.146 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.147 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:34.155 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.156 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
+2019-03-27 01:21:34.165 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:34.166 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 121(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:34.173 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:34.174 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:34.175 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3150(Long), 2019-03-26 15:58:02.0(Timestamp)
+2019-03-27 01:21:34.183 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:34.184 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:34.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
+2019-03-27 01:21:34.192 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:34.193 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 122(Long)
+2019-03-27 01:21:34.201 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:34.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:34.202 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:34.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:34.265 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
+2019-03-27 01:21:34.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:34.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:34.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:34.462 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:34.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 3(Integer), 158(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:34.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.585 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:34.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:34.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:34.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
+2019-03-27 01:21:34.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:34.650 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.651 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:34.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:34.800 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:34.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.864 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:34.918 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:34.919 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 1(Integer), 158(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:34.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:34.986 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:34.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3197(String), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:35.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.040 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:35.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 122(Integer)
+2019-03-27 01:21:35.049 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 1
+2019-03-27 01:21:35.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -1(Integer), null, null
+2019-03-27 01:21:35.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.107 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.108 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -2(Integer), null, null
+2019-03-27 01:21:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.162 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.163 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -3(Integer), null, null
+2019-03-27 01:21:35.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -4(Integer), null, null
+2019-03-27 01:21:35.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_user_class (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_flag,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3232(Long), 2(Integer), 158(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp), -5(Integer), null, null
+2019-03-27 01:21:35.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:35.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450207(String)
+2019-03-27 01:21:35.390 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:35.391 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:35.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 28
+2019-03-27 01:21:35.413 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.414 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207023(String)
+2019-03-27 01:21:35.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:35.431 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.432 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3189(Long), 2019-03-25 22:52:30.0(Timestamp)
+2019-03-27 01:21:35.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:35.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.442 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3189(Long), 3(Integer), 158(Long), 2019-03-25 22:52:30.0(Timestamp), 2019-03-26 07:55:17.0(Timestamp), -1(Integer), 518285(Long), 李萍(String), 3170(Long)
+2019-03-27 01:21:35.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:35.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:35.508 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.509 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3189(Long), 2019-03-25 22:52:30.0(Timestamp)
+2019-03-27 01:21:35.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.519 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.520 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207013(String)
+2019-03-27 01:21:35.527 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.528 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:35.535 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3180(Long), 2019-03-26 07:55:26.0(Timestamp)
+2019-03-27 01:21:35.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:35.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3180(Long), 1(Integer), 158(Long), 2019-03-26 07:55:26.0(Timestamp), 2019-03-26 15:51:03.0(Timestamp), -1(Integer), 518290(Long), 卢健(String), 3170(Long)
+2019-03-27 01:21:35.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:35.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -1(Integer)
+2019-03-27 01:21:35.620 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.621 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3180(Long), 2019-03-26 07:55:26.0(Timestamp)
+2019-03-27 01:21:35.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.632 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207031(String)
+2019-03-27 01:21:35.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:35.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3195(Long), 2019-03-26 15:51:09.0(Timestamp)
+2019-03-27 01:21:35.660 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:35.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3195(Long), 2(Integer), 158(Long), 2019-03-26 15:51:09.0(Timestamp), 2019-03-26 22:52:17.0(Timestamp), -1(Integer), 518295(Long), 朱蓉(String), 3170(Long)
+2019-03-27 01:21:35.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:35.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:35.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3195(Long), 2019-03-26 15:51:09.0(Timestamp)
+2019-03-27 01:21:35.736 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
+2019-03-27 01:21:35.744 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.746 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:35.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.755 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
+2019-03-27 01:21:35.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:35.765 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3187(Long), 3(Integer), 158(Long), 2019-03-25 22:53:58.0(Timestamp), 2019-03-26 07:56:21.0(Timestamp), -2(Integer), 518286(Long), 张燕(String), 3170(Long)
+2019-03-27 01:21:35.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:35.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.820 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207021(String)
+2019-03-27 01:21:35.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.832 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:35.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.846 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
+2019-03-27 01:21:35.856 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.857 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.857 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:35.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.872 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
+2019-03-27 01:21:35.888 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.889 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.890 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:35.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3187(Long), 2019-03-25 22:53:58.0(Timestamp)
+2019-03-27 01:21:35.923 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:35.924 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:35.925 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
+2019-03-27 01:21:35.946 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:35.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:35.947 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:35.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:35.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:35.966 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
+2019-03-27 01:21:35.981 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:35.982 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:35.983 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3185(Long), 1(Integer), 158(Long), 2019-03-26 07:56:27.0(Timestamp), 2019-03-26 15:53:29.0(Timestamp), -2(Integer), 518291(Long), 黄亮(String), 3170(Long)
+2019-03-27 01:21:36.041 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:36.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207019(String)
+2019-03-27 01:21:36.054 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.065 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
+2019-03-27 01:21:36.079 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.080 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.097 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.098 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
+2019-03-27 01:21:36.111 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.112 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.113 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.119 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.120 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3185(Long), 2019-03-26 07:56:27.0(Timestamp)
+2019-03-27 01:21:36.129 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.130 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
+2019-03-27 01:21:36.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
+2019-03-27 01:21:36.159 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:36.160 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:36.160 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3192(Long), 1(Integer), 158(Long), 2019-03-26 15:53:42.0(Timestamp), 2019-03-26 15:53:50.0(Timestamp), -2(Integer), 518291(Long), 王园园(String), 3170(Long)
+2019-03-27 01:21:36.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:36.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
+2019-03-27 01:21:36.244 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.245 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.254 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
+2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.273 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
+2019-03-27 01:21:36.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:36.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.298 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:42.0(Timestamp)
+2019-03-27 01:21:36.311 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.312 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.312 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
+2019-03-27 01:21:36.321 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.322 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:36.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
+2019-03-27 01:21:36.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207027(String)
+2019-03-27 01:21:36.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.354 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:36.362 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.363 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
+2019-03-27 01:21:36.370 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.371 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:36.379 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.380 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
+2019-03-27 01:21:36.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.392 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.393 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -2(Integer)
+2019-03-27 01:21:36.401 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.402 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3192(Long), 2019-03-26 15:53:56.0(Timestamp)
+2019-03-27 01:21:36.411 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.412 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207030(String)
+2019-03-27 01:21:36.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.423 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.424 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:36.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.433 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.434 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3194(Long), 2019-03-25 22:52:09.0(Timestamp)
+2019-03-27 01:21:36.444 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:36.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:36.445 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3194(Long), 3(Integer), 158(Long), 2019-03-25 22:52:09.0(Timestamp), 2019-03-26 07:55:32.0(Timestamp), -3(Integer), 518287(Long), 姚佳(String), 3170(Long)
+2019-03-27 01:21:36.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:36.576 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.577 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:36.586 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.587 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.588 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3194(Long), 2019-03-25 22:52:09.0(Timestamp)
+2019-03-27 01:21:36.598 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.599 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207011(String)
+2019-03-27 01:21:36.607 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:36.617 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3178(Long), 2019-03-26 07:55:39.0(Timestamp)
+2019-03-27 01:21:36.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:36.626 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:36.627 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3178(Long), 1(Integer), 158(Long), 2019-03-26 07:55:39.0(Timestamp), 2019-03-26 15:52:41.0(Timestamp), -3(Integer), 518292(Long), 季琤(String), 3170(Long)
+2019-03-27 01:21:36.687 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:36.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.688 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3178(Long), 2019-03-26 07:55:39.0(Timestamp)
+2019-03-27 01:21:36.704 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:36.706 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450207022(String)
+2019-03-27 01:21:36.718 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:36.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.719 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:36.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.732 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3188(Long), 2019-03-26 15:52:49.0(Timestamp)
+2019-03-27 01:21:36.741 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 0
+2019-03-27 01:21:36.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==>  Preparing: INSERT INTO sys_user_class_unregular (work_date,dept_id,user_id,class_type,team_id,start_time,end_time,lane,class_id,user_name,monitor_user_id) VALUES (?,?,?,?,?,?,?,?,?,?,?) 
+2019-03-27 01:21:36.742 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| ==> Parameters: 2019-03-26 01:21:15.652(Timestamp), 122(Long), 3188(Long), 2(Integer), 158(Long), 2019-03-26 15:52:49.0(Timestamp), 2019-03-26 22:52:43.0(Timestamp), -3(Integer), 518297(Long), 丁玲(String), 3170(Long)
+2019-03-27 01:21:36.795 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.insert_detail2 [159] -| <==    Updates: 1
+2019-03-27 01:21:36.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:36.796 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 122(Long), 2(Integer), -3(Integer)
+2019-03-27 01:21:36.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 1
+2019-03-27 01:21:36.806 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==>  Preparing: SELECT * FROM sys_user_class_unregular WHERE user_id = ? and start_time < ? < end_time 
+2019-03-27 01:21:36.807 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| ==> Parameters: 3188(Long), 2019-03-26 15:52:49.0(Timestamp)
+2019-03-27 01:21:36.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByMore [159] -| <==      Total: 1
+2019-03-27 01:21:36.816 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:36.817 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
+2019-03-27 01:21:36.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:36.825 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:36.826 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 123(Long)
+2019-03-27 01:21:36.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:36.836 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:36.837 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 3(Integer), 159(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:36.895 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:36.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:36.896 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
+2019-03-27 01:21:36.905 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:36.906 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:36.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 1(Integer), 159(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:36.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:36.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:36.965 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
+2019-03-27 01:21:36.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:36.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:36.974 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288(String), 2(Integer), 159(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:37.029 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.030 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 123(Integer)
+2019-03-27 01:21:37.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.037 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:37.038 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010003(String)
+2019-03-27 01:21:37.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:37.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:37.102 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 46
+2019-03-27 01:21:37.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:37.103 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010003032(String)
+2019-03-27 01:21:37.115 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:37.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:37.116 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 123(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:37.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:37.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.128 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
+2019-03-27 01:21:37.139 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 124(Long)
+2019-03-27 01:21:37.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.148 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.149 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 3(Integer), 160(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:37.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
+2019-03-27 01:21:37.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.220 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 1(Integer), 160(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:37.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.276 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
+2019-03-27 01:21:37.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.287 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.288 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 3648,3649,3650,3667,3654,3668,3651,3659,3653,3665,3657,3664,3658,3655,3671,3660,3656,3666,3669,3661,3670,3652,3663,3672,3662(String), 2(Integer), 160(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:37.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 124(Integer)
+2019-03-27 01:21:37.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:37.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010009(String)
+2019-03-27 01:21:37.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:37.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:37.440 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 32
+2019-03-27 01:21:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:37.441 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010009022(String)
+2019-03-27 01:21:37.452 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:37.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:37.453 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 124(Long), 1(Integer), -3(Integer)
+2019-03-27 01:21:37.463 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:37.469 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
+2019-03-27 01:21:37.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 125(Long)
+2019-03-27 01:21:37.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.488 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.489 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 3(Integer), 161(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:37.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.552 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.553 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
+2019-03-27 01:21:37.561 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.562 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.563 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 1(Integer), 161(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:37.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.618 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.619 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
+2019-03-27 01:21:37.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.628 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.629 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647(String), 2(Integer), 161(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:37.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.686 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 125(Integer)
+2019-03-27 01:21:37.695 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:37.696 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010008(String)
+2019-03-27 01:21:37.747 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:37.748 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:37.768 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 42
+2019-03-27 01:21:37.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:37.769 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010008019(String)
+2019-03-27 01:21:37.779 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:37.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:37.780 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 125(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:37.789 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:37.791 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.792 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
+2019-03-27 01:21:37.801 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:37.802 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 126(Long)
+2019-03-27 01:21:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:37.809 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.810 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 3(Integer), 162(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:37.876 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.877 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
+2019-03-27 01:21:37.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 1(Integer), 162(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:37.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:37.941 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:37.942 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
+2019-03-27 01:21:37.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:37.949 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:37.950 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622(String), 2(Integer), 162(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:38.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.007 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 126(Integer)
+2019-03-27 01:21:38.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:38.017 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010001(String)
+2019-03-27 01:21:38.055 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:38.056 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:38.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 18
+2019-03-27 01:21:38.081 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:38.082 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010001014(String)
+2019-03-27 01:21:38.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:38.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:38.095 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 126(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:38.106 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:38.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.110 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
+2019-03-27 01:21:38.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:38.125 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.126 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 127(Long)
+2019-03-27 01:21:38.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:38.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.144 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 3(Integer), 163(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:38.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.209 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
+2019-03-27 01:21:38.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.218 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 1(Integer), 163(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:38.274 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.275 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
+2019-03-27 01:21:38.283 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3553,3554,3555,3556,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3557,3576,3577,3578(String), 2(Integer), 163(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:38.340 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.341 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 127(Integer)
+2019-03-27 01:21:38.350 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:38.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010002(String)
+2019-03-27 01:21:38.437 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:38.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:38.478 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 42
+2019-03-27 01:21:38.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:38.479 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010002011(String)
+2019-03-27 01:21:38.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:38.498 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:38.499 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 127(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:38.512 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:38.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.518 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
+2019-03-27 01:21:38.530 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:38.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.531 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 128(Long)
+2019-03-27 01:21:38.543 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:38.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 3(Integer), 164(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:38.608 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.609 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.610 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
+2019-03-27 01:21:38.623 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.624 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 1(Integer), 164(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:38.683 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.684 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.685 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
+2019-03-27 01:21:38.697 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.698 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:38.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599(String), 2(Integer), 164(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:38.756 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:38.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:38.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 128(Integer)
+2019-03-27 01:21:38.772 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.773 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:38.774 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010006(String)
+2019-03-27 01:21:38.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:38.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:38.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 46
+2019-03-27 01:21:38.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:38.855 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010006011(String)
+2019-03-27 01:21:38.867 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:38.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:38.868 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 128(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:38.880 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:38.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
+2019-03-27 01:21:38.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:38.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 129(Long)
+2019-03-27 01:21:38.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:38.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:38.909 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450205(String)
+2019-03-27 01:21:38.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:38.967 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:38.987 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 43
+2019-03-27 01:21:38.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:38.988 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450205013(String)
+2019-03-27 01:21:38.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:39.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.001 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
+2019-03-27 01:21:39.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.010 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.011 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 130(Long)
+2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.019 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 3(Integer), 165(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.075 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
+2019-03-27 01:21:39.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 1(Integer), 165(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:39.140 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.141 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
+2019-03-27 01:21:39.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3500,3501,3502,3504,3503,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522(String), 2(Integer), 165(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:39.207 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.208 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 130(Integer)
+2019-03-27 01:21:39.216 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:39.217 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450204(String)
+2019-03-27 01:21:39.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:39.284 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:39.304 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 36
+2019-03-27 01:21:39.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:39.305 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450204011(String)
+2019-03-27 01:21:39.313 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:39.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:39.314 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 130(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:39.325 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:39.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.333 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
+2019-03-27 01:21:39.342 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.343 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 131(Long)
+2019-03-27 01:21:39.351 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.352 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.353 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 3(Integer), 166(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:39.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.408 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.409 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
+2019-03-27 01:21:39.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.421 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.422 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 1(Integer), 166(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:39.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.474 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.475 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
+2019-03-27 01:21:39.484 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499(String), 2(Integer), 166(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:39.544 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 131(Integer)
+2019-03-27 01:21:39.554 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.555 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:39.556 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450206(String)
+2019-03-27 01:21:39.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:39.613 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:39.637 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 36
+2019-03-27 01:21:39.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:39.638 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450206014(String)
+2019-03-27 01:21:39.648 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:39.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:39.649 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 131(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:39.655 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:39.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.661 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
+2019-03-27 01:21:39.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.668 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.669 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 132(Long)
+2019-03-27 01:21:39.677 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:39.678 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450105(String)
+2019-03-27 01:21:39.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:39.711 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:39.730 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 18
+2019-03-27 01:21:39.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:39.731 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450105008(String)
+2019-03-27 01:21:39.737 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:39.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
+2019-03-27 01:21:39.752 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:39.753 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 133(Long)
+2019-03-27 01:21:39.761 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 3(Integer), 167(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:39.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.818 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.819 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
+2019-03-27 01:21:39.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 1(Integer), 167(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:39.885 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.886 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
+2019-03-27 01:21:39.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:39.899 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449(String), 2(Integer), 167(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:39.952 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:39.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:39.953 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 133(Integer)
+2019-03-27 01:21:39.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:39.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:39.964 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010007(String)
+2019-03-27 01:21:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:40.016 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:40.042 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 26
+2019-03-27 01:21:40.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:40.043 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010007020(String)
+2019-03-27 01:21:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:40.050 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:40.051 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 133(Long), 2(Integer), -1(Integer)
+2019-03-27 01:21:40.058 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:40.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.064 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
+2019-03-27 01:21:40.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.072 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.073 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 134(Long)
+2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 3(Integer), 168(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:40.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.142 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.143 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
+2019-03-27 01:21:40.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.150 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.151 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 1(Integer), 168(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:40.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.210 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.211 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
+2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.219 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3398,3399,3400,3401,3426,3419,3425,3423,3421,3403,3402,3408,3409,3412,3417,3418,3416,3406,3407,3415,3422,3404,3420,3405,3414,3411,3424,3413,3410(String), 2(Integer), 168(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:40.285 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.286 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 134(Integer)
+2019-03-27 01:21:40.297 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:40.299 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1450208(String)
+2019-03-27 01:21:40.374 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:40.375 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:40.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 30
+2019-03-27 01:21:40.397 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:40.398 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1450208017(String)
+2019-03-27 01:21:40.405 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:40.406 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:40.407 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 134(Long), 3(Integer), -1(Integer)
+2019-03-27 01:21:40.418 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:40.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.420 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
+2019-03-27 01:21:40.429 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.430 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 135(Long)
+2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 3(Integer), 169(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:40.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.496 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.497 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
+2019-03-27 01:21:40.504 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.505 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 1(Integer), 169(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:40.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.565 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
+2019-03-27 01:21:40.573 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.574 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.575 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374(String), 2(Integer), 169(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:40.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 135(Integer)
+2019-03-27 01:21:40.639 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:40.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010005(String)
+2019-03-27 01:21:40.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:40.701 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:40.727 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 48
+2019-03-27 01:21:40.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:40.728 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010005014(String)
+2019-03-27 01:21:40.734 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:40.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:40.735 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 135(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:40.745 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.750 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
+2019-03-27 01:21:40.757 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:40.758 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 136(Long)
+2019-03-27 01:21:40.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:40.766 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.767 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 3(Integer), 172(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:40.830 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.831 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
+2019-03-27 01:21:40.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.840 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.841 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 1(Integer), 172(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:40.897 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.898 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
+2019-03-27 01:21:40.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.907 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:40.908 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3325,3326,3327,3769,3328,3331,3330,3339,3344,3332,3334,3338,3333,3343,3345,3341,3329,3336,3337,3346,3335,3347,3340,3342(String), 2(Integer), 172(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:40.962 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:40.963 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 136(Integer)
+2019-03-27 01:21:40.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:40.972 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:40.973 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1010004(String)
+2019-03-27 01:21:41.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:41.057 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:41.076 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 36
+2019-03-27 01:21:41.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:41.077 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1010004017(String)
+2019-03-27 01:21:41.084 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:41.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:41.085 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 136(Long), 3(Integer), -2(Integer)
+2019-03-27 01:21:41.094 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:41.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.099 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
+2019-03-27 01:21:41.113 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:41.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.114 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 137(Long)
+2019-03-27 01:21:41.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:41.122 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.123 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 3(Integer), 170(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:41.185 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.186 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
+2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.197 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 1(Integer), 170(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:41.252 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.253 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
+2019-03-27 01:21:41.262 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.263 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.264 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 3375,3377,3376,3397,3381,3380,3379,3394,3387,3385,3378,3383,3382,3384,3386,3388,3389,3390,3391,3392,3393,3395,3396(String), 2(Integer), 170(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:41.319 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.320 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 137(Integer)
+2019-03-27 01:21:41.329 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:41.330 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230001(String)
+2019-03-27 01:21:41.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:41.416 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:41.438 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 69
+2019-03-27 01:21:41.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:41.439 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230001012(String)
+2019-03-27 01:21:41.446 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:41.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:41.447 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 137(Long), 1(Integer), -2(Integer)
+2019-03-27 01:21:41.457 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:41.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.460 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
+2019-03-27 01:21:41.470 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.471 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 138(Long)
+2019-03-27 01:21:41.483 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:41.485 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230003(String)
+2019-03-27 01:21:41.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:41.515 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:41.536 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 36
+2019-03-27 01:21:41.537 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:41.538 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230003005(String)
+2019-03-27 01:21:41.545 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:41.549 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.550 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
+2019-03-27 01:21:41.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:41.557 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE dept_id = ? 
+2019-03-27 01:21:41.558 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| ==> Parameters: 139(Long)
+2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getByDeptId [159] -| <==      Total: 1
+2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.566 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 3(Integer), 171(Long), 2019-03-25 23:00:00.0(Timestamp), 2019-03-26 08:00:00.0(Timestamp)
+2019-03-27 01:21:41.630 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.631 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
+2019-03-27 01:21:41.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.640 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.641 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 1(Integer), 171(Long), 2019-03-26 08:00:00.0(Timestamp), 2019-03-26 15:00:00.0(Timestamp)
+2019-03-27 01:21:41.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.699 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.700 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
+2019-03-27 01:21:41.709 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.710 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308(String), 2(Integer), 171(Long), 2019-03-26 15:00:00.0(Timestamp), 2019-03-26 23:00:00.0(Timestamp)
+2019-03-27 01:21:41.762 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==>  Preparing: SELECT * FROM t_br_layer_fee_station where organ_id = ? 
+2019-03-27 01:21:41.763 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| ==> Parameters: 139(Integer)
+2019-03-27 01:21:41.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.DepartmentDao.getFsBydeptId [159] -| <==      Total: 0
+2019-03-27 01:21:41.775 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==>  Preparing: call SP_OUTTER_OFFWORKLIST (?,?); 
+2019-03-27 01:21:41.776 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getCallList [159] -| ==> Parameters: 20190326(String), 1230002(String)
+2019-03-27 01:21:41.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==>  Preparing: SELECT * FROM temp_offWorkList ORDER BY laneID,ONTIME,OPERATOR 
+2019-03-27 01:21:41.813 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| ==> Parameters: 
+2019-03-27 01:21:41.833 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.xiansuo.CallDao.getOffWork [159] -| <==      Total: 24
+2019-03-27 01:21:41.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:41.834 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 1230002011(String)
+2019-03-27 01:21:41.842 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:41.844 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==>  Preparing: SELECT * FROM sys_user_class WHERE work_date =? and dept_id=? and class_type = ? and lane = ? 
+2019-03-27 01:21:41.845 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| ==> Parameters: 2019-03-26 00:00:00.0(Timestamp), 139(Long), 3(Integer), -3(Integer)
+2019-03-27 01:21:41.854 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.UserClassDao.getUsersClassByDeptAndWorkDay [159] -| <==      Total: 0
+2019-03-27 01:21:41.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2019-03-27 01:21:41.863 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
+2019-03-27 01:21:41.870 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2019-03-27 01:21:41.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.871 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 3(Integer), 152(Long), 2019-03-26 23:00:00.0(Timestamp), 2019-03-27 08:00:00.0(Timestamp)
+2019-03-27 01:21:41.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.929 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2019-03-27 01:21:41.930 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
+2019-03-27 01:21:41.938 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2019-03-27 01:21:41.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:41.939 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 1(Integer), 152(Long), 2019-03-27 08:00:00.0(Timestamp), 2019-03-27 15:00:00.0(Timestamp)
+2019-03-27 01:21:41.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:41.998 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==>  Preparing: SELECT * FROM sys_team WHERE id = ? 
+2019-03-27 01:21:41.999 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| ==> Parameters: 152(Long)
+2019-03-27 01:21:42.008 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamDao.getOne [159] -| <==      Total: 1
+2019-03-27 01:21:42.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==>  Preparing: INSERT INTO sys_team_class (work_date,dept_id,user_ids,class_type,team_id,start_time,end_time) VALUES (?, ?,?,?,?,?,?) 
+2019-03-27 01:21:42.009 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| ==> Parameters: 2019-03-27 00:00:00.0(Timestamp), 46(Long), 3111,3112,3113,2637,2639,2644,2646,2640,2650,2642,2645,2641,3114,2653,2648,2651,2647,2654,2649,2626,2477(String), 2(Integer), 152(Long), 2019-03-27 15:00:00.0(Timestamp), 2019-03-27 23:00:00.0(Timestamp)
+2019-03-27 01:21:42.074 |-DEBUG [http-nio-8089-exec-2] com.xintong.visualinspection.dao.master.TeamClassDao.insert [159] -| <==    Updates: 1
+2019-03-27 01:21:42.098 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:42.099 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==>  Preparing: select u.*,o.parentid as road_manager_id,(select NAME from sys_job where id = u.POSITIONID ) as position_name from t_sys_users u left join t_sys_organ o on u.organid=o.id where username= ? and u.status >0 
+2019-03-27 01:21:42.100 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| ==> Parameters: 10001(String)
+2019-03-27 01:21:42.106 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.cluster.UserInfoDao.findByUserName [159] -| <==      Total: 1
+2019-03-27 01:21:42.107 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==>  Preparing: select p.*,spr.permission_type from sys_permission p LEFT JOIN sys_role_user sru on sru.sys_user_id = ? LEFT JOIN sys_role r on sru.sys_role_id=r.id LEFT JOIN sys_permission_role spr on spr.role_id=r.id where p.id =spr.permission_id 
+2019-03-27 01:21:42.108 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:42.117 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.PermissionDao.findByAdminUserId [159] -| <==      Total: 24
+2019-03-27 01:21:42.118 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==>  Preparing: select * from sys_role where id in (select sys_role_id from sys_role_user where sys_user_id=?) 
+2019-03-27 01:21:42.118 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| ==> Parameters: 3111(Integer)
+2019-03-27 01:21:42.131 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.RoleDao.getRoleByUser [159] -| <==      Total: 1
+2019-03-27 01:21:42.134 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [73] -| authenticated user 10001, setting security context
+2019-03-27 01:21:42.135 |-INFO  [http-nio-8089-exec-5] com.xintong.system.securityTools.JwtAuthenticationTokenFilter [56] -| checking authentication 10001
+2019-03-27 01:21:42.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==>  Preparing: SELECT * FROM ( SELECT t.id,t.work_date,t.dept_id,t.class_type,t.team_id,t.start_time,t.end_time,t.user_ids ,st.name as team_name,st.type FROM sys_team_class t left join sys_team st ON t.team_id = st.id WHERE 1=1 AND t.dept_id = ? AND t.work_date >= ? AND t.work_date <= ? ) tc WHERE tc.type =? ORDER BY tc.work_date ASC, tc.start_time ASC 
+2019-03-27 01:21:42.137 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| ==> Parameters: 46(Long), 2019-03-01 00:00:00.0(Timestamp), 2019-03-31 23:59:59.0(Timestamp), 1(Integer)
+2019-03-27 01:21:42.147 |-DEBUG [http-nio-8089-exec-5] com.xintong.visualinspection.dao.master.TeamClassDao.getClassList [159] -| <==      Total: 9