瀏覽代碼

报告模板 2022/12/1

lwhhszx 2 年之前
父節點
當前提交
15b01b58ed

+ 4 - 0
RMS/src/main/java/cn/cslg/report/common/model/vo/PersonnelVO.java

@@ -124,6 +124,10 @@ public class PersonnelVO extends BaseVO {
     private Integer roleType;
 
     /**
+     * 剔除的人员Id
+     */
+    private List<Integer> notInPersonIds;
+    /**
      * 部门职位绑定关系
      */
     @Data

+ 6 - 6
RMS/src/main/java/cn/cslg/report/controller/CompareController.java

@@ -38,12 +38,12 @@ public class CompareController {
         return res;
     }
 
-//    @RequestMapping(value = "/getSureCompareFile", method = RequestMethod.POST)
-//    @Operation(summary = "获得已确定的对比文件详情(分页)")
-//    public String getSureCompareFile(@RequestBody PatentVO patentVO) throws IOException {
-//        String res = compareFilesService.getSureCompareFile(patentVO);
-//        return res;
-//    }
+    @RequestMapping(value = "/getSureCompareFile", method = RequestMethod.POST)
+    @Operation(summary = "获得已确定的对比文件详情(分页)")
+    public String getSureCompareFile(@RequestBody PatentVO patentVO) throws IOException {
+        String res = compareFilesService.getSureCompareFile(patentVO);
+        return res;
+    }
 
     @RequestMapping(value = "/getCompareNos", method = RequestMethod.GET)
     @Operation(summary = "获得对比专利号")

+ 64 - 39
RMS/src/main/java/cn/cslg/report/controller/TaskController.java

@@ -155,13 +155,6 @@ public class TaskController {
         LambdaQueryWrapper<AssoRecordsFeature> queryAssoByRecordId = new LambdaQueryWrapper<>();
         queryAssoByRecordId.in(AssoRecordsFeature::getRecordsId, recordIds);
         List<AssoRecordsFeature> assoRecordsFeatures = assoRecordsFeatureService.list(queryAssoByRecordId);
-        // 从关联数据里获得特征id
-        List<Integer> featureIds = assoRecordsFeatures.stream().map(AssoRecordsFeature::getFeatureId).collect(Collectors.toList());
-        // 根据特征ID查询特征
-        LambdaQueryWrapper<Features> featuresWrapper = new LambdaQueryWrapper<>();
-        featuresWrapper.in(Features::getId, featureIds);
-        List<Features> features = featureService.list(featuresWrapper);
-
         PatentVO patentVO = new PatentVO();
         patentVO.setPatentNos(PatentNos);
         //根据专利号查询专利详细信息
@@ -171,7 +164,7 @@ public class TaskController {
         //存放专利信息的map集合
         List<Map<String, Object>> patentListMaps = new ArrayList<>();
         //专利号别名的map
-         Map<String,Object> OtherName =new HashMap<>();
+        Map<String, Object> OtherName = new HashMap<>();
         //填充专利数据到patentListMap
         for (int i = 0; i < patentDTOS.size(); i++) {
             JSONObject item = patentDTOS.get(i);
@@ -194,16 +187,18 @@ public class TaskController {
             patentListMap.put("applicationDate", item.get("applicationDate"));
             patentListMap.put("abstractPath", item.get("abstractPath"));
             patentListMaps.add(patentListMap);
-            OtherName.put(item.get("publicNo").toString(),("D" + (i + 1)));
+            OtherName.put(item.get("publicNo").toString(), ("D" + (i + 1)));
         }
 
         //存放对比方案信息的map集合
         List<Map<String, Object>> scenariosMaps = new ArrayList<>();
+        //存放所有对比方案所有不重复的rightId
+        List<Integer> rightIds = new ArrayList<>();
         for (int i = 0; i < compareScenarios.size(); i++) {
             CompareScenarios item1 = compareScenarios.get(i);
             //获得单个对比方案的权要的所有特征
             List<Features> partFeatures = allFeatures.stream().filter(item -> item.getRightId().equals(item1.getRightId())).collect(Collectors.toList());
-            List<Integer> partFeatureIds =partFeatures.stream().map(Features::getId).collect(Collectors.toList());
+            List<Integer> partFeatureIds = partFeatures.stream().map(Features::getId).collect(Collectors.toList());
             //获得单个对比方案的
             List<CompareScenariosAndRecords> partScenariosRecords = scenariosRecords.stream().filter(item -> item.getScenariosID().equals(item1.getId())).collect(Collectors.toList());
             List<Integer> recordsIds = partScenariosRecords.stream().map(CompareScenariosAndRecords::getRecordID).collect(Collectors.toList());
@@ -215,7 +210,24 @@ public class TaskController {
             } else {
                 temMap.put("rightName", "附属" + partFeatures.get(0).getRightName());
             }
-
+            temMap.put("rightId", item1.getRightId());
+            // 从关联数据里获得特征id
+            if (rightIds.contains(item1.getRightId())) {
+                rightIds.add(item1.getRightId());
+            }
+            //存放对比方案每一个特征记录
+            List<Map<String, Object>> maps = new ArrayList<>();
+            partFeatures.forEach(tem -> {
+                Map<String, Object> map = new HashMap<>();
+                map.put("featureContent", tem.getContent());
+                AssoRecordsFeature assoRecordsFeature = assoRecordsFeatures.stream().filter(item -> item.getFeatureId().equals(tem.getId())).findFirst().orElse(new AssoRecordsFeature());
+                map.put("compareResult", assoRecordsFeature.getComResult());
+                CompareRecords record = records.stream().filter(item -> item.getId().equals(assoRecordsFeature.getRecordsId())).findFirst().orElse(new CompareRecords());
+                map.put("compareContent", record.getContent());
+                maps.add(map);
+            });
+            //方案内容
+            temMap.put("fileDetails", maps);
             //新颖性模块
             //获得本方案所有的专利号
             List<String> patentNOs = new ArrayList<>();
@@ -232,9 +244,8 @@ public class TaskController {
                         List<Integer> temFIds = assoRecordsFeatures.stream().filter(tm -> temRecordIds.contains(tm.getRecordsId())).map(AssoRecordsFeature::getFeatureId).collect(Collectors.toList());
                         if (temFIds.size() == partFeatures.size()) {
                             String tmName = item;
-                            if(OtherName.containsKey(item))
-                            {
-                                tmName=OtherName.get(item).toString();
+                            if (OtherName.containsKey(item)) {
+                                tmName = OtherName.get(item).toString();
                             }
                             noveltyFiles.add(tmName);
                         }
@@ -243,42 +254,56 @@ public class TaskController {
             //创造性模块
             List<String> creativeFiles = new ArrayList<>();
             partFeatureIds.forEach(
-                  item->{
-                 List<Integer> temRecordIDs = assoRecordsFeatures.stream().filter(tm->tm.getFeatureId().equals(item)).map(AssoRecordsFeature::getRecordsId).collect(Collectors.toList());
-                 List<CompareRecords>  temRecords  =records.stream().filter(tm->temRecordIDs.contains(tm.getId())).collect(Collectors.toList());
-            List<String> temStrs =new ArrayList<>();
-           temRecords.forEach(
-                   tm->{String name =tm.getPatentNo();
-                       if(OtherName.containsKey(tm.getPatentNo())){
-                           name=   OtherName.get(tm.getPatentNo()).toString();
-                       }
+                    item -> {
+                        List<Integer> temRecordIDs = assoRecordsFeatures.stream().filter(tm -> tm.getFeatureId().equals(item)).map(AssoRecordsFeature::getRecordsId).collect(Collectors.toList());
+                        List<CompareRecords> temRecords = records.stream().filter(tm -> temRecordIDs.contains(tm.getId())).collect(Collectors.toList());
+                        List<String> temStrs = new ArrayList<>();
+                        temRecords.forEach(
+                                tm -> {
+                                    String name = tm.getPatentNo();
+                                    if (OtherName.containsKey(tm.getPatentNo())) {
+                                        name = OtherName.get(tm.getPatentNo()).toString();
+                                    }
 
-                       if(!temStrs.contains(name)){
-                           temStrs.add(name);
-                       }
-                   }
-           );
-           List<CompareScenariosAndRecords>  andRecords =  partScenariosRecords.stream().filter(tm->tm.getFeaturesID().equals(item)).collect(Collectors.toList());
-           if(andRecords.size()!=0){
-               temStrs.add("C");
-           }
-           String join = StringUtils.join(temStrs, "+");
-           creativeFiles.add(join);
-                  }
-          );
+                                    if (!temStrs.contains(name)) {
+                                        temStrs.add(name);
+                                    }
+                                }
+                        );
+                        List<CompareScenariosAndRecords> andRecords = partScenariosRecords.stream().filter(tm -> tm.getFeaturesID().equals(item)).collect(Collectors.toList());
+                        if (andRecords.size() != 0) {
+                            temStrs.add("C");
+                        }
+                        String join = StringUtils.join(temStrs, "+");
+                        creativeFiles.add(join);
+                    }
+            );
 
-            String creative = StringUtils.join(creativeFiles, ",");
+            String creative = StringUtils.join(creativeFiles, "");
             String novelty = StringUtils.join(noveltyFiles, "-");
+            //新颖性
             temMap.put("novelty", novelty);
+            //创造性
             temMap.put("creative", creative);
             scenariosMaps.add(temMap);
 
         }
+        List<Object> allRightScenarios=new ArrayList<>();
+        rightIds.forEach(tem -> {
+            List<Map<String, Object>> rightScenarios = new ArrayList<>();
+            scenariosMaps.forEach(item -> {
+                if (item.get("rightId").equals(tem)) {
+                    rightScenarios.add(item);
+                }
+            });
+            allRightScenarios.add(rightScenarios);
+        });
+
 
         // 为表格的显示绑定行循环
         LoopRowTableRenderPolicy policy = new LoopRowTableRenderPolicy();
         // 将bz设置为行循环绑定的数据源的key,即key是bz的value会在模板中的{{bz}}处进行解析
-        Configure configure = Configure.builder().bind("patentList", policy).bind("compareResult",policy).build();
+        Configure configure = Configure.builder().bind("patentList", policy).bind("compareResult", policy).bind("fileDetails", policy).build();
         Map<String, Object> map = new HashMap<>();
 
         //1.系统数据
@@ -287,7 +312,7 @@ public class TaskController {
         map.put("sys", new SystemMO(ds[0], ds[1], ds[2], "", "reportName"));
         map.put("sss", "saeqeq");
         map.put("patentList", patentListMaps);
-        map.put("compareResult",scenariosMaps);
+        map.put("compareResult", allRightScenarios);
         // 读取模板、数据并渲染
         XWPFTemplate template = XWPFTemplate.compile(filePath, configure).render(map);
 

+ 0 - 2
RMS/src/main/java/cn/cslg/report/entity/CompareFiles.java

@@ -37,8 +37,6 @@ public class CompareFiles extends BaseEntity<CompareFiles> {
      */
     @TableField(value = "STATE")
     private String state;
-    @TableField(value = "PATENT_FILED_ID")
-    private int patentFiledID;
 
 
 }

+ 16 - 1
RMS/src/main/java/cn/cslg/report/entity/CompareRecords.java

@@ -63,7 +63,22 @@ public class CompareRecords extends BaseEntity<CompareRecords> {
      */
     @Schema(description = "对比人ID")
     @TableField(value = "PERSON_ID")
-    private int personId;
+    private Integer personId;
+
+    /**
+     * 解析过程
+     */
+    @Schema(description = "解析过程")
+    @TableField(value = "PARESING_PROCESS")
+    private String paresingProcess;
+
+    /**
+     * 文件路径
+     */
+    @Schema(description = "文件路径")
+    @TableField(value = "FILE_PATH")
+    private String filePath;
+
 
     /**
      * 报告ID

+ 3 - 0
RMS/src/main/java/cn/cslg/report/entity/Features.java

@@ -73,4 +73,7 @@ public class Features extends BaseEntity<Features> {
     @TableField(value = "RIGHT_TYPE")
     private Integer rightType;
 
+    @TableField(value = "FEATURES_ORDER")
+    private Integer featuresOrder;
+
 }

+ 14 - 1
RMS/src/main/java/cn/cslg/report/entity/Report.java

@@ -155,13 +155,26 @@ public class Report extends BaseEntity<Report> {
     @TableField(value = "SPLIT_BY")
     private Integer splitBy;
     /**
-     * 拆分根据
+     * 拆分类型
      */
     @Schema(description="拆分类型")
     @TableField(value = "SPLIT_TYPE")
     private Integer splitType;
 
     /**
+     * 创建人ID
+     */
+    @Schema(description="创建人ID")
+    @TableField(value = "CREATE_PERSON_ID")
+    private Integer createPersonId;
+    /**
+     * 创建人姓名
+     */
+    @Schema(description="拆分类型")
+    @TableField(value = "CREATE_PERSON_NAME")
+    private String createPersonName;
+
+    /**
      * 场景列表
      */
     @TableField(exist = false)

+ 1 - 0
RMS/src/main/java/cn/cslg/report/service/BaseService.java

@@ -38,6 +38,7 @@ public class BaseService {
     private final OutInterfaceService outInterfaceService;
     private final FileUtils fileUtils;
     private final LoginUtils loginUtils;
+    private final CacheUtils cacheUtils;
     /**
      * @return 1.生成验证码的base64转码 2.生成的UUID 与Redis里面的验证码KEY值一致
      * @title 获取验证码

+ 1 - 0
RMS/src/main/java/cn/cslg/report/service/OutInterfaceService.java

@@ -201,6 +201,7 @@ public class OutInterfaceService {
         map.put("tenant", personnelVO.getTenant());
         map.put("size", personnelVO.getSize());
         map.put("current", personnelVO.getCurrent());
+        map.put("notInPersonIds",personnelVO.getNotInPersonIds());
         JSONObject json = new JSONObject(map);
         RequestBody requestBody = RequestBody.create(JSON, String.valueOf(json));
         OkHttpClient okHttpClient = new OkHttpClient();

+ 1 - 2
RMS/src/main/java/cn/cslg/report/service/business/CompareFilesService.java

@@ -73,7 +73,7 @@ public class CompareFilesService extends ServiceImpl<CompareFilesMapper, Compare
             if (quotes.size() != 0 && quotes.contains(patentNos.get(i))) {
                 compareFiles1.setRemark("引");
             }
-            if (familyPatentNos.size() != 0 && familyPatentNos.contains(patentNos.get(i))) {
+            if ( familyPatentNos!=null&& familyPatentNos.size() != 0 && familyPatentNos.contains(patentNos.get(i))) {
                 compareFiles1.setRemark("同");
             }
             compareFiles.add(compareFiles1);
@@ -168,7 +168,6 @@ public class CompareFilesService extends ServiceImpl<CompareFilesMapper, Compare
     public String add(int reportId,String patentNo,int patentFiledID)throws IOException{
         CompareFiles compareFiles = new CompareFiles();
         compareFiles.setPatentNo(patentNo);
-        compareFiles.setPatentFiledID(patentFiledID);
         compareFiles.setReportId(reportId);
         compareFiles.insert();
         return Response.success();

+ 3 - 9
RMS/src/main/java/cn/cslg/report/service/business/CompareRecordsService.java

@@ -1,19 +1,14 @@
 package cn.cslg.report.service.business;
 
-import cn.cslg.report.common.model.vo.CompareRecordsVO;
 import cn.cslg.report.common.utils.Response;
 import cn.cslg.report.common.utils.SecurityUtils.LoginUtils;
-import cn.cslg.report.common.utils.StringUtils;
 import cn.cslg.report.entity.CompareFiles;
 import cn.cslg.report.entity.CompareRecords;
 import cn.cslg.report.entity.Features;
-import cn.cslg.report.entity.Report;
 import cn.cslg.report.entity.asso.AssoRecordsFeature;
-import cn.cslg.report.mapper.CompareFilesMapper;
 import cn.cslg.report.mapper.CompareRecordsMapper;
 import cn.cslg.report.mapper.FeatureMapper;
-import cn.cslg.report.service.OutInterfaceService;
-import com.alibaba.fastjson.JSONObject;
+
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import lombok.RequiredArgsConstructor;
@@ -55,7 +50,7 @@ public class CompareRecordsService extends ServiceImpl<CompareRecordsMapper, Com
         return Response.success();
     }
 
-    @Transactional
+    @Transactional(rollbackFor = Exception.class)
     public String updateCompareRecords(CompareRecords compareRecord) throws IOException {
         LambdaQueryWrapper<AssoRecordsFeature> queryWrapper =new LambdaQueryWrapper<>();
         queryWrapper.eq(AssoRecordsFeature::getRecordsId,compareRecord.getId());
@@ -67,7 +62,6 @@ public class CompareRecordsService extends ServiceImpl<CompareRecordsMapper, Com
     }
 
     public String getCompareRecords(CompareRecords compareRecord) throws IOException {
-
         LambdaQueryWrapper<CompareRecords> wrapper = new LambdaQueryWrapper<>();
         wrapper.eq(CompareRecords::getReportId, compareRecord.getReportId());
         if (compareRecord.getPatentNo() != null) {
@@ -110,7 +104,7 @@ public class CompareRecordsService extends ServiceImpl<CompareRecordsMapper, Com
         List<CompareFiles> compareFiles =new ArrayList<>();
         if(headerPatentNos.size()!=0){
             LambdaQueryWrapper<CompareFiles> lambdaQueryWrapper =new LambdaQueryWrapper<>();
-            lambdaQueryWrapper.in(CompareFiles::getPatentNo,headerPatentNos);
+            lambdaQueryWrapper.in(CompareFiles::getPatentNo,headerPatentNos).eq(CompareFiles::getReportId,compareRecord.getReportId());
              compareFiles =compareFilesService.list(lambdaQueryWrapper);
 
         }

+ 24 - 5
RMS/src/main/java/cn/cslg/report/service/business/FeatureService.java

@@ -69,6 +69,12 @@ public class FeatureService extends ServiceImpl<FeatureMapper, Features> {
         queryWrapper.eq(Report::getId, reportId);
         Report report = reportService.list(queryWrapper).get(0);
         Integer flag = 0;
+        if(splitBy==null){
+            splitBy=0;
+        }
+        if(splitType==null){
+            splitType=0;
+        }
         if (report.getSplitBy() == null || report.getSplitType() == null || report.getSplitBy() != splitBy || report.getSplitType() != splitType) {
             report.setSplitBy(splitBy);
             report.setSplitType(splitType);
@@ -122,17 +128,22 @@ public class FeatureService extends ServiceImpl<FeatureMapper, Features> {
         if(splitType==1)
         {wrapper.ne(Features::getSplitBy,-1);}
         this.remove(wrapper);
+
+
         //将拆解的权要和特征装载到对象PatentRightVo
         for (int i = 0; i < patentRights.size(); i++) {
+            //特征序号
+            Integer order =1;
             List<Features> featuresList = new ArrayList<>();
             String[] tems= patentRights.get(i).getContent().split("\\.");
             String name ="权要"+tems[0].replace(" ","");
             int rightId = patentRights.get(i).getId();
             //对需要拆解的权要进行拆解
+            Integer a=splitBy;
             if (partRightIds.contains(patentRights.get(i).getId())) {
 
                 if (featureFromDb != null && featureFromDb.size() != 0) {
-                    featuresList = featureFromDb.stream().filter(item -> item.getRightId() == rightId && item.getSplitBy() == splitBy &&item.getPartnerId()==personnelVO.getId()).collect(Collectors.toList());
+                    featuresList = featureFromDb.stream().filter(item -> item.getRightId() == rightId && item.getSplitBy() .equals(a)  &&item.getPartnerId()==personnelVO.getId()).collect(Collectors.toList());
                 }
                 //如果数据库里无拆解记录则手动插入一条
                 if (featuresList == null || featuresList.size() == 0 || flag == 1) {
@@ -154,8 +165,10 @@ public class FeatureService extends ServiceImpl<FeatureMapper, Features> {
                         features.setSplitBy(splitBy);
                         features.setPartnerId(personnelVO.getId());
                         features.setRightName(name);
+                        features.setFeaturesOrder(order);
                         features.setRightType(patentRights.get(i).getType());
                         featuresList.add(features);
+                        order+=1;
                     }
                     this.saveBatch(featuresList);
                 }
@@ -173,6 +186,7 @@ public class FeatureService extends ServiceImpl<FeatureMapper, Features> {
                         features.setSplitBy(-1);
                         features.setPartnerId(personnelVO.getId());
                         features.setRightName(name);
+                        features.setFeaturesOrder(1);
                         features.insert();
                     featuresList.add(features);
                 }
@@ -314,14 +328,19 @@ public class FeatureService extends ServiceImpl<FeatureMapper, Features> {
         }
         List<Features> features = new ArrayList<>();
         for (int i = 0; i < patentRightVos.size(); i++) {
+             int order=1;
             PatentRightVo patentRightVo = patentRightVos.get(i);
             if (patentRightVo.getFeatures() != null && patentRightVo.getFeatures().size() != 0) {
-                features.addAll(patentRightVo.getFeatures());
+                List<Features> tem =patentRightVo.getFeatures();
+                for (int t = 0; t < tem.size(); t++) {
+                    tem.get(t).setPartnerId(personnelVO.getId());
+                    tem.get(t).setFeaturesOrder(order);
+                    order+=1;
+                    features.add(tem.get(t));
+                }
             }
         }
-        for (int t = 0; t < features.size(); t++) {
-            features.get(t).setPartnerId(personnelVO.getId());
-        }
+
         this.saveBatch(features);
         return Response.success();
     }

+ 8 - 4
RMS/src/main/java/cn/cslg/report/service/business/ReportService.java

@@ -1,12 +1,11 @@
 package cn.cslg.report.service.business;
 
 import cn.cslg.report.common.core.base.Constants;
+import cn.cslg.report.common.model.vo.PersonnelVO;
 import cn.cslg.report.common.model.vo.ReportVO;
 import cn.cslg.report.common.model.vo.SystemDictVO;
-import cn.cslg.report.common.utils.DataUtils;
-import cn.cslg.report.common.utils.LogExceptionUtil;
-import cn.cslg.report.common.utils.Response;
-import cn.cslg.report.common.utils.StringUtils;
+import cn.cslg.report.common.utils.*;
+import cn.cslg.report.common.utils.SecurityUtils.LoginUtils;
 import cn.cslg.report.entity.Report;
 import cn.cslg.report.mapper.ReportMapper;
 import cn.cslg.report.service.OutInterfaceService;
@@ -37,6 +36,8 @@ public class ReportService extends ServiceImpl<ReportMapper, Report> {
     private final OutInterfaceService outInterfaceService;
     private final ReportMapper reportMapper;
     private final ReportFieldService reportFieldService;
+    private final CacheUtils cacheUtils;
+    private final LoginUtils loginUtils;
 
     /**
      * @param report 报告类
@@ -62,6 +63,9 @@ public class ReportService extends ServiceImpl<ReportMapper, Report> {
             report.setClientName(clientName);
             report.setDepartmentName(map.get("departName").toString());
             report.setPersonName(map.get("personName").toString());
+            PersonnelVO personnelVO =cacheUtils.getLoginUser(loginUtils.getId());
+            report.setCreatePersonId(personnelVO.getId());
+            report.setCreatePersonName(personnelVO.getName());
             boolean addFlag = this.save(report);
             if (addFlag) {
               reportFieldService.addDefaultField(report.getId(),report.getType());

+ 0 - 2
RMS/src/main/java/cn/cslg/report/service/business/TaskService.java

@@ -182,8 +182,6 @@ public class TaskService extends ServiceImpl<TaskMapper, Task> {
          wrapper1.select(Report::getSignPatentNo);
          wrapper1.eq(Report::getId,assignTaskVO.getReportId());
         String signPatentNO = reportService.list(wrapper1).get(0).getSignPatentNo();
-
-
         //遍历assignTaskVO的分配人员信息assigns,在任务表里插入分配任务
         List<String> selectedNos = new ArrayList<>();
         //记录所有人的id

+ 2 - 2
RMS/src/main/resources/application.yml

@@ -67,6 +67,6 @@ mybatis-plus:
     map-underscore-to-camel-case: true
     cache-enabled: false
   mapper-locations: classpath:mapper/*.xml
-PCSUrl: http://192.168.1.17:8880
-PASUrl: http://192.168.1.17:8879
+PCSUrl: http://192.168.1.13:8880
+PASUrl: http://192.168.1.13:8879
 

+ 0 - 937
logs/rms/rms-debug.2022-11-22.0.log

@@ -1,937 +0,0 @@
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.542 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.573 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.604 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.620 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.620 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:17.636 DEBUG 23816 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.479 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REPORT
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.479 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.497 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.500 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.501 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage ==> Parameters: 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:31.541 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectPage <==      Total: 10
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:32.650 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM REPORT ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:32.650 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectCount ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:32.669 DEBUG 23816 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.316 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.316 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.348 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.348 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.348 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.363 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.363 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.363 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:34.395 DEBUG 23816 [http-nio-8885-exec-2] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.022 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.023 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.040 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.046 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.047 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.065 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.066 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.066 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:56:36.083 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:57:14.716 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID={personelId} and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:57:14.717 DEBUG 23816 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 1(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:57:21.979 DEBUG 23816 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID={personelId} and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 10:57:21.979 DEBUG 23816 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 1(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:04:47.430 DEBUG 12916 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID={personelId} and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:04:47.451 DEBUG 12916 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 1(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.598 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.598 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.629 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.645 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.645 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.661 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.661 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.661 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:00.676 DEBUG 12916 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.517 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.517 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.536 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.538 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.538 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.555 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.556 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.556 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:05.574 DEBUG 12916 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:39.282 DEBUG 12916 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID={personelId} and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:05:39.282 DEBUG 12916 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:29.976 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:30.013 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:30.049 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:43.491 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:43.492 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:07:43.509 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.759 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.760 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.778 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.786 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.787 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.805 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.819 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.820 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:36.837 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.757 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.757 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.804 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.804 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.804 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:44.820 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.888 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.888 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.906 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.907 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.908 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.926 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.927 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.927 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:52.947 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.822 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.823 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.846 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.852 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.853 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.872 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.873 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.874 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:55.891 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.433 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.434 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.453 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.456 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.457 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.475 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.476 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.477 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:08:59.495 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.458 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.458 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.473 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.473 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.473 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:00.489 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.704 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.705 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.723 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.751 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.751 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.768 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.771 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.772 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:18.794 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.075 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.076 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.097 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.099 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.099 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.117 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.117 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.117 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:21.136 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:48.965 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:48.965 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:48.983 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:48.985 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:48.985 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:49.000 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:49.000 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:49.000 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:49.016 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.747 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.748 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.768 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.772 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.773 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.791 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.793 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.795 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:11:51.813 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.503 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.503 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.520 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.522 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.522 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.541 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.541 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.542 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:07.559 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.742 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.742 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.760 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.761 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.762 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.779 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.781 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.782 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:12:26.800 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.939 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.940 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.958 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.965 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.965 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.982 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.982 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:13:59.983 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.000 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.273 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.273 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.288 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.320 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.320 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.335 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.335 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.335 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.354 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.354 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.354 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.370 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.464 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.464 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:00.495 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.741 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.741 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.759 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.760 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.760 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.778 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.831 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.833 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.843 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.844 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.851 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.858 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.858 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.862 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.864 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.864 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.875 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.876 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.876 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.881 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.883 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.883 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.895 DEBUG 28772 [http-nio-8885-exec-9] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:01.901 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.082 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.084 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.103 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.107 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.108 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.125 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.126 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.126 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:11.144 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.836 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.836 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.854 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.854 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.854 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.869 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.869 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.869 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:13.885 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.121 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.122 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.141 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.145 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.146 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.164 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.164 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.165 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:16.182 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.933 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.934 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.955 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.956 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.956 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.975 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.976 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.978 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:18.996 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.405 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.405 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.423 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.424 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.425 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.442 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.443 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.443 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:21.461 DEBUG 28772 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.530 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.531 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.548 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.549 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.549 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.567 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.567 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.567 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:14:50.586 DEBUG 28772 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.742 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.742 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.757 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.757 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.757 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.773 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:16:03.788 DEBUG 28772 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.365 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.366 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.384 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.385 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.386 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.403 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.404 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.405 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:03.422 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.648 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.648 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.664 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.664 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.664 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.679 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.679 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.679 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:10.711 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.000 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.000 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.016 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.016 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.016 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.031 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.086 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.086 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.101 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.101 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.101 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.117 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.117 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.117 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:17:49.148 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.924 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.924 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.940 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.940 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.940 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:03.955 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.173 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.174 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.190 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.190 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.190 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.205 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.254 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.254 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.274 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.274 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.274 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.290 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.290 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.290 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:38.306 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.650 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.650 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.654 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.654 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.669 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.685 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.685 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.685 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:40.701 DEBUG 28772 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:47.974 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:47.976 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:24:47.993 DEBUG 28772 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.689 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.689 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.710 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.711 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.711 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.727 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.728 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.728 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:25:05.748 DEBUG 28772 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.229 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.229 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.247 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.247 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.248 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.264 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.264 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.265 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:46.281 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.758 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.759 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.778 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.779 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.779 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.798 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.798 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.798 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:47.817 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:48.979 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:48.979 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:48.999 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:48.999 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:48.999 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:49.027 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:49.027 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:49.028 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:30:49.044 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:31:37.867 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==>  Preparing: update LITIGATION_HISTORY set(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:31:37.868 DEBUG 28772 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==> Parameters: 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.635 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.635 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.653 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.654 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.654 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.670 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.670 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.670 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:14.685 DEBUG 28772 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.639 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.639 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.658 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.659 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.659 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.678 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.678 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.679 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:18.698 DEBUG 28772 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:48.681 DEBUG 21968 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==>  Preparing: update LITIGATION_HISTORY set(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:32:48.712 DEBUG 21968 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==> Parameters: 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:33:30.412 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:33:30.412 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:33:30.448 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:35:40.551 DEBUG 21968 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:35:40.551 DEBUG 21968 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:35:40.582 DEBUG 21968 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:36:11.590 DEBUG 21968 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:36:11.590 DEBUG 21968 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:36:11.606 DEBUG 21968 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:37:36.093 DEBUG 21968 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:37:36.094 DEBUG 21968 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:37:36.099 DEBUG 21968 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:38:00.477 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:38:00.480 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:38:00.501 DEBUG 21968 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:30.459 DEBUG 19448 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:30.693 DEBUG 19448 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:30.890 DEBUG 19448 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:58.528 DEBUG 19448 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:58.528 DEBUG 19448 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:42:58.559 DEBUG 19448 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:46:14.431 DEBUG 19448 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==>  Preparing: update LITIGATION_HISTORY set(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:46:14.433 DEBUG 19448 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==> Parameters: 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:46:21.409 DEBUG 19448 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==>  Preparing: update LITIGATION_HISTORY set(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:46:21.410 DEBUG 19448 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.updateLitigationHistory ==> Parameters: 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:50:51.459 DEBUG 8452 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:52:14.296 DEBUG 8452 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:52:28.042 DEBUG 8452 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:52:28.043 DEBUG 8452 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:52:28.080 DEBUG 8452 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:58:23.522 DEBUG 8452 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:58:24.336 DEBUG 8452 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:58:45.128 DEBUG 4308 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 11:58:45.152 DEBUG 4308 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:11:18.585 DEBUG 18092 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:11:18.611 DEBUG 18092 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:15:29.087 DEBUG 20156 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: -- update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) update INVALID_RECORD set(?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:15:29.109 DEBUG 20156 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:16:45.650 DEBUG 25200 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID) values (?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:16:45.674 DEBUG 25200 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:17:17.756 DEBUG 13008 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set(PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID) value (?,?,?,?,?,?,?,?) where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:17:17.779 DEBUG 13008 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:18:53.592 DEBUG 13008 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:18:53.592 DEBUG 13008 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:18:53.628 DEBUG 13008 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:20:07.240 DEBUG 13008 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:20:07.240 DEBUG 13008 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:20:07.258 DEBUG 13008 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:31:09.068 DEBUG 30784 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:31:09.284 DEBUG 30784 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:31:09.477 DEBUG 30784 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:32:22.330 DEBUG 1628 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:32:22.549 DEBUG 1628 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:32:22.744 DEBUG 1628 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:33:19.956 DEBUG 1628 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:33:19.956 DEBUG 1628 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:33:19.974 DEBUG 1628 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:34:10.524 DEBUG 1628 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:34:10.525 DEBUG 1628 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:34:10.542 DEBUG 1628 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:35:01.750 DEBUG 1628 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:35:01.751 DEBUG 1628 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:35:01.773 DEBUG 1628 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:36:47.706 DEBUG 9416 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:36:47.733 DEBUG 9416 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:36:47.768 DEBUG 9416 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:09.170 DEBUG 11524 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:09.192 DEBUG 11524 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:09.232 DEBUG 11524 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:45.761 DEBUG 31204 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:45.781 DEBUG 31204 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:38:45.816 DEBUG 31204 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:40:08.900 DEBUG 32156 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:40:08.921 DEBUG 32156 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:40:08.961 DEBUG 32156 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:42:00.127 DEBUG 22072 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:42:00.148 DEBUG 22072 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:42:00.188 DEBUG 22072 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.058 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.060 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.080 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.087 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.088 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.106 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.113 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.113 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.131 DEBUG 22072 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.239 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.239 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.259 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.259 DEBUG 22072 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO as patentNo from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.260 DEBUG 22072 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 13:53:12.278 DEBUG 22072 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.265 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.265 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.283 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.287 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.288 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:48.308 DEBUG 22072 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.079 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.080 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.096 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.098 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.099 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:05:49.117 DEBUG 22072 [http-nio-8885-exec-9] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:07:58.145 DEBUG 15700 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,`RESULT`=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:07:58.166 DEBUG 15700 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:10:51.700 DEBUG 20988 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,RESULT=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:10:51.721 DEBUG 20988 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:11:03.242 DEBUG 20988 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,RESULT=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:11:03.243 DEBUG 20988 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:11:04.397 DEBUG 20988 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,RESULT=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:11:04.399 DEBUG 20988 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:15:19.658 DEBUG 32524 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==>  Preparing: insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:15:19.680 DEBUG 32524 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:16:19.817 DEBUG 15620 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==>  Preparing: insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-[rms:0.0.0.0:8885] [,] 2022-11-22 14:16:19.840 DEBUG 15620 [http-nio-8885-exec-2] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 15:31:52.968 DEBUG 2784 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,RESULT=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 15:31:53.002 DEBUG 2784 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 15:33:03.863 DEBUG 9668 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==>  Preparing: update INVALID_RECORD set PATENT_NO=?,PERSON=?,PERSON_ID=?,INVALID_TIME={invalidTime},JUDGMENT_TIME=?,RESULT=?,FILE_ID=?,REPORT_ID=? where ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 15:33:03.891 DEBUG 9668 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.updateInvalidRecord ==> Parameters: string(String), string(String), string(String), string(String), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:35.864 DEBUG 296 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:35.885 DEBUG 296 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:35.922 DEBUG 296 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:43.504 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:43.505 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:30:43.523 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:07.335 DEBUG 296 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:07.335 DEBUG 296 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:07.350 DEBUG 296 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:17.720 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:17.720 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:31:17.739 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.117 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.118 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.143 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.154 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.155 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:57:58.175 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.895 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.896 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.914 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.960 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.961 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.978 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.982 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:01.983 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:02.000 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.786 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.786 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.804 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.812 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.813 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.830 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.836 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.837 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:03.854 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:07.478 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:07.479 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:07.496 DEBUG 296 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:13.878 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:13.879 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:58:13.896 DEBUG 296 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:59:24.852 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:59:24.852 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 16:59:24.870 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.066 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE (ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.066 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectList ==> Parameters: 59(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.081 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReportMapper.selectList <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.304 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.FeatureMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,CONTENT_OUT,CONTENT,RIGHT_ID,PARTNER_ID,IS_FINAL,REPORT_ID,EXPLAIN_TEXT,SPLIT_BY FROM FEATURES WHERE (SIGN_PATENT_NO = ? AND REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.304 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.FeatureMapper.selectList ==> Parameters: EP3869981A1(String), 59(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:00:27.319 DEBUG 296 [http-nio-8885-exec-4] cn.cslg.report.mapper.FeatureMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:01:18.042 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==>  Preparing: insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:01:18.043 DEBUG 296 [http-nio-8885-exec-7] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:01:41.485 DEBUG 296 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:01:41.486 DEBUG 296 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:01:41.520 DEBUG 296 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:02:17.419 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:02:17.420 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:02:17.437 DEBUG 296 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:02:23.163 DEBUG 296 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==>  Preparing: insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:02:23.164 DEBUG 296 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:03:47.811 DEBUG 296 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==>  Preparing: insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID) values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:03:47.811 DEBUG 296 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:16.186 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:16.206 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:16.240 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:28.367 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:28.368 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:28.384 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:49.623 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:49.624 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:05:49.641 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:06:07.760 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:06:07.763 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:06:07.784 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:09:04.437 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:09:04.440 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:09:04.458 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:12:37.395 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:12:37.399 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:12:37.419 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:18.811 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:18.812 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:18.976 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:39.986 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:39.987 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:16:40.004 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:17:00.379 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:17:00.379 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:17:00.396 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:19:22.280 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:19:22.280 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:19:22.297 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:34.438 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:34.439 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:34.456 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:47.887 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:47.887 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:20:47.903 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:22:47.163 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:22:47.164 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:22:47.180 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:23:32.021 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:23:32.022 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:23:32.038 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:49:48.951 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:49:48.952 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 17:49:48.973 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:26.497 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:26.497 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:26.515 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:45.194 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:45.195 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:45.212 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:51.715 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:51.715 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:03:51.734 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:02.466 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:02.466 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:02.482 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:04.628 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:04.628 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:04.646 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:12.787 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:12.787 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:12.802 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:19.376 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:19.378 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:19.401 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:36.492 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:36.492 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:36.510 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:53.703 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:53.703 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:53.721 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:58.138 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:58.139 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:04:58.157 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:08.897 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:08.897 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:08.915 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:11.447 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:11.447 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:11.463 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:16.628 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:16.628 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:16.646 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:17.952 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:17.952 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:17.970 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:31.092 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:31.093 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:31.112 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:39.124 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:39.125 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:39.145 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:44.563 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:44.564 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:44.583 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:46.789 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:46.790 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:46.810 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:56.366 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:56.367 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:05:56.449 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:06.881 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:06.881 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:06.897 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:08.414 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:08.415 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:08.432 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:14.636 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:14.636 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:14.654 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:22.489 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:22.490 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:22.508 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:24.389 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:24.389 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:24.406 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:28.183 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:28.184 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:28.200 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:35.413 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:35.413 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:35.431 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:41.466 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:41.467 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:41.484 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:43.559 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:43.560 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:43.579 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:46.515 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:46.515 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:46.533 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:50.038 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:50.038 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:50.056 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:56.012 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:56.012 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:06:56.030 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:04.390 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:04.391 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:04.409 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:08.284 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:08.284 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:07:08.302 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:08:28.968 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:08:28.968 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:08:28.986 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:08.892 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:08.893 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:08.911 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:15.929 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:15.929 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:15.947 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:21.768 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:21.768 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:21.785 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:28.143 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:28.144 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:09:28.163 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:21:13.840 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:21:13.841 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:21:13.861 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:00.222 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:00.222 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:00.240 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:06.481 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:06.482 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:06.499 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:08.656 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:08.657 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:08.675 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:10.877 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:10.878 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:10.897 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:14.386 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:14.386 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:14.404 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:38.197 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:38.197 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:38.212 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:40.572 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:40.572 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:40.587 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:45.623 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:45.623 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:22:45.641 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:16.213 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:16.214 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:16.232 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:20.908 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:20.909 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:23:20.926 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:25:47.488 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:25:47.489 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:25:47.507 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:14.687 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:14.687 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:14.703 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:19.477 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:19.477 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:19.495 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:29.158 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:29.159 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:27:29.176 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:28:27.013 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:28:27.013 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:28:27.031 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:29:36.054 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:29:36.054 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:29:36.072 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:13.687 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:13.688 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:13.705 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:20.209 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:20.210 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:20.229 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:21.744 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:21.744 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:21.762 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:28.232 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:28.233 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:28.252 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:34.481 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:34.481 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:34.496 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:35.903 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:35.904 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:30:35.921 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:06.111 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:06.111 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:06.129 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:38.400 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:38.400 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:38.418 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:59.016 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:59.016 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:31:59.034 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:03.977 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:03.977 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:03.995 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:14.543 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:14.544 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:14.566 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:17.056 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:17.057 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:17.075 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:31.903 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:31.903 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:31.921 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:56.921 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:56.921 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:32:56.937 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.427 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.428 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.447 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.456 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.457 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.475 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.484 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.484 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:07.502 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:12.499 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:12.499 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:12.516 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:56.089 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:56.089 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:33:56.105 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:15.856 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:15.856 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:15.874 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:57.218 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:57.218 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:34:57.236 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:03.300 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:03.300 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:03.317 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.176 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.176 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.207 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.207 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.207 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:38.223 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.475 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.475 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.506 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.537 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.537 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.556 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.558 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==>  Preparing: SELECT ID,CREATE_TIME,TASK_NAME,PROGRESS,TASK_STATUS,CREATE_ID,CREATE_NAME,BEGIN_TIME,FINISH_TIME,END_TIME,TYPE,REPORT_ID,HANDLE_PERSON_ID,HANDLE_PERSON_NAME,REMARK,RESULT FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.558 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:40.574 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.209 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==>  Preparing: SELECT ID,TASK_ID,TASK_TYPE,PERSON_ID AS personelId,PERSON_TYPE AS personelType,REPORT_ID,PATENT_NO,STATE FROM ASSO_TASK_PERSONEL WHERE (TASK_ID = ? AND STATE = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.209 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.228 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.229 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==>  Preparing: SELECT ID,REPORT_ID,IMPORT_COUNT,CREATE_DATE,STATE FROM IMPORT_TASK WHERE (REPORT_ID = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.230 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.248 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.249 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.249 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:35:43.267 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:06.922 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:06.922 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:06.939 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:32.852 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:32.852 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:32.867 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:37.241 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:37.241 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:37.259 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:40.649 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:40.649 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:40.667 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:49.675 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:49.676 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:36:49.694 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:13.171 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:13.171 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:13.189 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:16.914 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:16.914 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:16.931 DEBUG 8764 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:20.221 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:20.221 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:20.237 DEBUG 8764 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:51.412 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:51.412 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:37:51.430 DEBUG 8764 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:38:42.273 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:38:42.273 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:38:42.289 DEBUG 8764 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:22.321 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:22.321 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:22.339 DEBUG 8764 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:43.360 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:43.360 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:39:43.376 DEBUG 8764 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:40:49.269 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:40:49.269 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:40:49.285 DEBUG 8764 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:06.545 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:06.545 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:06.563 DEBUG 8764 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:16.160 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:16.160 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:16.191 DEBUG 8764 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:23.390 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==>  Preparing: select PATENT_NO from ASSO_TASK_PERSONEL where PERSON_ID=? and STATE=? and TASK_ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:23.390 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber ==> Parameters: 114(Integer), 0(Integer), 57(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-22 18:41:23.406 DEBUG 8764 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3

+ 294 - 0
logs/rms/rms-debug.2022-11-29.0.log

@@ -0,0 +1,294 @@
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.349 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.413 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.450 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.462 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.464 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:08:56.482 DEBUG 21240 [http-nio-8885-exec-2] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.296 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REPORT
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.299 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.318 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.322 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT ORDER BY ID DESC LIMIT ?
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.328 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage ==> Parameters: 10(Long)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.362 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage <==      Total: 10
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.421 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM REPORT ORDER BY ID DESC
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.422 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:03.440 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:36.616 DEBUG 21240 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:36.616 DEBUG 21240 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: CN107249363A(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:36.632 DEBUG 21240 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:37.467 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:37.468 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: CN107249363A(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:37.484 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:39.433 DEBUG 21240 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:39.434 DEBUG 21240 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: CN107249363A(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:39.451 DEBUG 21240 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:40.263 DEBUG 21240 [http-nio-8885-exec-1] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:40.264 DEBUG 21240 [http-nio-8885-exec-1] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: CN107249363A(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:40.281 DEBUG 21240 [http-nio-8885-exec-1] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:41.400 DEBUG 21240 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:41.401 DEBUG 21240 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: CN107249363A(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:09:41.417 DEBUG 21240 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.622 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.622 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.639 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.640 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.641 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:51.657 DEBUG 21240 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.471 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REPORT
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.472 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.488 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.490 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT ORDER BY ID DESC LIMIT ?
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.491 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage ==> Parameters: 10(Long)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.513 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectPage <==      Total: 10
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.540 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM REPORT ORDER BY ID DESC
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.541 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:10:58.559 DEBUG 21240 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:23:45.411 DEBUG 2824 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHT,REPORT_ID,SIGN_PATENT_NO,CONTRAST_RESULT,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:23:45.427 DEBUG 2824 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: null
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:24:51.239 DEBUG 2824 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHT,REPORT_ID,SIGN_PATENT_NO,CONTRAST_RESULT,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:24:51.240 DEBUG 2824 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:25:03.646 DEBUG 2824 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHT,REPORT_ID,SIGN_PATENT_NO,CONTRAST_RESULT,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:25:03.647 DEBUG 2824 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:26:02.402 DEBUG 9632 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME AS right,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:26:02.419 DEBUG 9632 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:27:26.729 DEBUG 1632 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHT_NAME AS right,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:27:26.750 DEBUG 1632 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:27:47.792 DEBUG 14948 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME AS right,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:27:47.816 DEBUG 14948 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.690 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.714 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.744 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.752 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.753 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.770 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.776 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.777 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:28:37.795 DEBUG 12204 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.227 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REPORT
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.227 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.246 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage_mpCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.248 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT ORDER BY ID DESC LIMIT ?
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.249 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage ==> Parameters: 10(Long)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.269 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectPage <==      Total: 10
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.298 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectCount ==>  Preparing: SELECT COUNT( * ) FROM REPORT ORDER BY ID DESC
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.298 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectCount ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.314 DEBUG 12204 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectCount <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.350 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.350 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.367 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.369 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==>  Preparing: SELECT ID,DICT_PARENT_KEY,DICT_CHILD_LABEL,DICT_CHILD_VALUE FROM SYS_DICT_ITEM WHERE (DICT_PARENT_KEY = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.370 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:35:02.387 DEBUG 12204 [http-nio-8885-exec-1] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.706 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.707 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.724 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.726 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.726 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.743 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.744 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.744 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 10:38:00.762 DEBUG 12204 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.272 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.289 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.319 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.328 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.329 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.346 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.352 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.353 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:02:39.372 DEBUG 20912 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:24.940 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:24.957 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:24.990 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:24.998 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:24.998 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:25.018 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:25.025 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:25.025 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:25.044 DEBUG 12056 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.221 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.224 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.243 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.244 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.244 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.263 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.265 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.265 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:03:57.283 DEBUG 12056 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.305 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.320 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.355 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.363 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.364 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.383 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.389 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.390 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:04:49.409 DEBUG 15060 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.394 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.412 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.442 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.451 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.452 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.468 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.477 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.477 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:13:12.495 DEBUG 14148 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.561 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.563 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.581 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.582 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.583 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.600 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.602 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.602 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:38.619 DEBUG 14148 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.920 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.938 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.970 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.979 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.979 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:55.998 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:56.004 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:56.005 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:23:56.024 DEBUG 19784 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.669 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.669 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.692 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.693 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.694 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.716 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.717 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.718 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:45:03.734 DEBUG 19784 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.434 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.434 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.452 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.454 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.454 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.475 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.476 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.477 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:47:40.494 DEBUG 19784 [http-nio-8885-exec-4] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.667 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.667 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.686 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.688 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.688 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.705 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.707 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.707 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:39.729 DEBUG 19784 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.694 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.717 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.764 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.773 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.773 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.793 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.799 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.800 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 11:48:57.824 DEBUG 14964 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.478 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.479 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.496 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.498 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.498 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.515 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.517 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.517 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:29:12.533 DEBUG 14964 [http-nio-8885-exec-3] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.805 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.805 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.822 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.823 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.823 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.840 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.841 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.842 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:33:47.858 DEBUG 14964 [http-nio-8885-exec-5] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.228 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.229 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.245 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.247 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.247 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.263 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.264 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.265 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:00.281 DEBUG 14964 [http-nio-8885-exec-6] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.390 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.390 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.407 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.408 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.409 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.425 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.426 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.427 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:34:53.443 DEBUG 14964 [http-nio-8885-exec-7] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.517 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.540 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.575 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.585 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.585 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.603 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.610 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.611 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:25.628 DEBUG 6088 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.754 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.754 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.771 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.772 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.773 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.789 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.790 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.791 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:35:41.807 DEBUG 6088 [http-nio-8885-exec-2] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.052 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.083 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.119 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.132 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.133 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.150 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.157 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.158 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 13:39:37.175 DEBUG 6776 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.107 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.123 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.163 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.194 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,CONTENT_OUT,CONTENT,RIGHT_ID,PARTNER_ID,IS_FINAL,REPORT_ID,EXPLAIN_TEXT,SPLIT_BY,RIGHT_NAME,RIGHT_TYPE FROM FEATURES WHERE (PARTNER_ID = ? AND REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.194 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==> Parameters: 114(Integer), 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.217 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList <==      Total: 29
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.223 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.224 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.243 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.262 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.263 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.279 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.285 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.286 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.303 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.309 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList ==>  Preparing: SELECT ID,RECORDS_ID,FEATURE_ID,COM_RESULT FROM ASSO_RECORDS_FEATURES WHERE (RECORDS_ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.309 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.324 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.326 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,CONTENT_OUT,CONTENT,RIGHT_ID,PARTNER_ID,IS_FINAL,REPORT_ID,EXPLAIN_TEXT,SPLIT_BY,RIGHT_NAME,RIGHT_TYPE FROM FEATURES WHERE (ID IN (?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.326 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==> Parameters: 3025(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:38:44.343 DEBUG 468 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:26.954 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==>  Preparing: SELECT ID,SIGN_PATENT_NO,NAME,PRO_TEC,TYPE,STATUS,CREATE_TIME,REPORT_FILE_ID,PERSON_ID,PERSON_NAME,CLIENT_ID,CLIENT_NAME,DEPARTMENT_ID,DEPARTMENT_NAME,ASSOCIATE_REPORT_ID,ASSOCIATE_REPORT_NAME,SCENARIO_ID,IT_FLAG,PROJECT_ID,VOLUME_NUMBER,SPLIT_BY,SPLIT_TYPE FROM REPORT WHERE ID=?
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:26.970 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.011 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.043 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,CONTENT_OUT,CONTENT,RIGHT_ID,PARTNER_ID,IS_FINAL,REPORT_ID,EXPLAIN_TEXT,SPLIT_BY,RIGHT_NAME,RIGHT_TYPE FROM FEATURES WHERE (PARTNER_ID = ? AND REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.043 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==> Parameters: 114(Integer), 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.067 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList <==      Total: 29
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.074 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==>  Preparing: SELECT ID,RIGHT_ID,RIGHTNAME,REPORT_ID,SIGN_PATENT_NO,CONTRAST AS contrastResult,PERSON_ID FROM COMPARE_SCENARIOS WHERE (REPORT_ID = ?)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.074 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList ==> Parameters: 60(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.092 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosMapper.selectList <==      Total: 2
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.099 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==>  Preparing: SELECT ID,SCENARIOS_ID,RECORD_ID,FEATURES_ID FROM ASSO_SCENARIOS_RECORDS WHERE (SCENARIOS_ID IN (?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.099 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList ==> Parameters: 1(Integer), 2(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.119 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareScenariosAndRecordsMapper.selectList <==      Total: 7
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.137 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,POSITION,FIELDS,CONTENT,PERSON_ID,REPORT_ID,TASK_ID FROM COMPARE_RECORDS WHERE (ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.137 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.158 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.CompareRecordsMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.178 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList ==>  Preparing: SELECT ID,RECORDS_ID,FEATURE_ID,COM_RESULT FROM ASSO_RECORDS_FEATURES WHERE (RECORDS_ID IN (?,?,?,?,?,?,?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.179 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList ==> Parameters: 0(Integer), 6(Integer), 9(Integer), 0(Integer), 6(Integer), 3(Integer), 9(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.196 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoRecordsFeatureMapper.selectList <==      Total: 1
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.198 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==>  Preparing: SELECT ID,SIGN_PATENT_NO,CONTENT_OUT,CONTENT,RIGHT_ID,PARTNER_ID,IS_FINAL,REPORT_ID,EXPLAIN_TEXT,SPLIT_BY,RIGHT_NAME,RIGHT_TYPE FROM FEATURES WHERE (ID IN (?))
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.198 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList ==> Parameters: 3025(Integer)
+[rms:0.0.0.0:8885] [,] 2022-11-29 17:40:27.216 DEBUG 21420 [http-nio-8885-exec-1] cn.cslg.report.mapper.FeatureMapper.selectList <==      Total: 1

文件差異過大導致無法顯示
+ 19035 - 0
logs/rms/rms-debug.2022-11-30.0.log


文件差異過大導致無法顯示
+ 0 - 1507
logs/rms/rms-info.2022-11-22.0.log


文件差異過大導致無法顯示
+ 1581 - 0
logs/rms/rms-info.2022-11-29.0.log


文件差異過大導致無法顯示
+ 485 - 0
logs/rms/rms-info.2022-11-30.0.log