Browse Source

Merge remote-tracking branch 'origin/master'

lwhhszx 2 years ago
parent
commit
6f3475abab

+ 1 - 4
RMS/src/main/java/cn/cslg/report/controller/AssoTaskPersonelController.java

@@ -7,7 +7,6 @@ import cn.cslg.report.service.business.AssoTaskPersonelService;
 import io.swagger.v3.oas.annotations.Operation;
 import io.swagger.v3.oas.annotations.tags.Tag;
 import lombok.RequiredArgsConstructor;
-import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.context.annotation.Lazy;
 import org.springframework.web.bind.annotation.*;
 
@@ -18,10 +17,8 @@ import java.io.IOException;
 @RequestMapping(Constants.REPORT_API + "/AssoTaskPersonel")
 @RequiredArgsConstructor(onConstructor_ = {@Lazy})
 public class AssoTaskPersonelController {
-    @Autowired
     public final AssoTaskPersonelService assoTaskPersonelService;
-    @Autowired
-    private  final LoginUtils loginUtils;
+    private final LoginUtils loginUtils;
     @GetMapping("/getPartClient")
     @Operation(summary = "分页获取对比专利")
     public String getPagination( int  state, int taskId,int location)throws IOException{

+ 3 - 2
RMS/src/main/java/cn/cslg/report/entity/InvalidRecord.java

@@ -22,8 +22,9 @@ public class InvalidRecord extends BaseEntity<InvalidRecord> {
      */
      @TableField(value = "PATENT_NO")
      private String patentNo;
-
-
+    //NEWPATENT_NO
+    @TableField(value = "NEWPATENT_NO")
+    private String newPatentNo;
 
 
     /**

+ 2 - 1
RMS/src/main/java/cn/cslg/report/entity/References.java

@@ -44,7 +44,8 @@ public class References extends BaseEntity<References> {
 
     @Schema(description = "创建时间")
     @TableField(value = "CREATE_TIME")
-    private Date createTime;
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
+    private String createTime;
 
 
     @Schema(description = "解释说明")

+ 4 - 2
RMS/src/main/java/cn/cslg/report/entity/ReviewHistory.java

@@ -8,9 +8,11 @@ import io.swagger.v3.oas.annotations.media.Schema;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
 import lombok.experimental.Accessors;
+import org.springframework.format.annotation.DateTimeFormat;
 
 import java.util.Date;
 
+
 /**
  * 审查历史表
  */
@@ -22,9 +24,9 @@ public class ReviewHistory extends BaseEntity<ReviewHistory> {
     /**
      * 时间
      */
-    @Schema(description = "时间")
     @TableField(value = "REVIEW_TIME")
-    @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
     private Date time;
 
     /**

+ 1 - 4
RMS/src/main/java/cn/cslg/report/mapper/InvalidRecordMapper.java

@@ -13,8 +13,5 @@ public interface InvalidRecordMapper extends BaseMapper<InvalidRecord> {
     int deleteInvalidRecord(@Param("id") int id);
     int updateInvalidRecord(InvalidRecord invalidRecord);
     int addInvalidRecord(InvalidRecord invalidRecord);
-    /*
-    分页查询有点问题页数和页码没有确定
-     */
-    List<InvalidRecord> select(InvalidRecord invalidRecord);
+
 }

+ 17 - 15
RMS/src/main/java/cn/cslg/report/service/business/AssoTaskPersonelService.java

@@ -20,6 +20,7 @@ import okhttp3.OkHttpClient;
 import okhttp3.Request;
 import okhttp3.RequestBody;
 import org.apache.ibatis.annotations.Param;
+import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Service;
@@ -36,31 +37,28 @@ import java.util.Objects;
 @Slf4j
 @RequiredArgsConstructor(onConstructor_ = {@Lazy})
 public class AssoTaskPersonelService extends ServiceImpl<AssoTaskPersonelMapper, AssoTaskPersonel> {
-    public final AssoTaskPersonelMapper assoTaskPersonelMapper;
+   public final  AssoTaskPersonelMapper assoTaskPersonelMapper ;
     public static final MediaType JSON = MediaType.parse("application/json; charset=utf-8");
     @Value("${PCSUrl}")
     private String PCSUrl;
     @Value("${PASUrl}")
     private String PASUrl;
-
-    public void test() {
-    }
-
-    public String deleAssoTaskPersonel(Integer reportId) throws IOException {
-        AssoTaskPersonel assoTaskPersonel = new AssoTaskPersonel();
-        LambdaQueryWrapper<AssoTaskPersonel> wrappers = new LambdaQueryWrapper();
-        wrappers.eq(AssoTaskPersonel::getReportId, reportId);
-        this.remove(wrappers);
+    public  void test(){}
+    public String deleAssoTaskPersonel(Integer reportId) throws IOException{
+        AssoTaskPersonel assoTaskPersonel =new AssoTaskPersonel();
+        LambdaQueryWrapper<AssoTaskPersonel> wrappers =new LambdaQueryWrapper();
+        wrappers.eq(AssoTaskPersonel::getReportId,reportId);
+         this.remove(wrappers);
         return Response.success();
     }
+    public String pagination(int personelId , int  state, int taskId,int location)throws IOException{
 
-    public String pagination(int personelId, int state, int taskId, int location) throws IOException {
         List<String> patentNumber = assoTaskPersonelMapper.getPatentNumber(personelId, state, taskId);
-        Map<String, Object> map = new HashMap<>();
-        map.put("patentNos", patentNumber);
-        map.put("startNumber", location);
+   Map<String,Object> map =new HashMap<>();
+   map.put("patentNos",patentNumber);
+   map.put("startNumber",location);
         JSONObject json = new JSONObject(map);
-        RequestBody requestBody = RequestBody.create(JSON, String.valueOf(json));
+           RequestBody requestBody =RequestBody.create(JSON,String.valueOf(json));
         OkHttpClient okHttpClient = new OkHttpClient();
         Request request = new Request.Builder()
                 .url(PASUrl + "/api/v2/patent/getPagination")
@@ -71,4 +69,8 @@ public class AssoTaskPersonelService extends ServiceImpl<AssoTaskPersonelMapper,
     }
 
 
+
+
+
+
 }

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

@@ -52,4 +52,5 @@ public class InvalidRecordService extends ServiceImpl<InvalidRecordMapper, Inval
     }
 
 
-}
+    }
+

+ 2 - 2
RMS/src/main/resources/mapper/CompareFilesMapper.xml

@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
 <mapper namespace="cn.cslg.report.mapper.CompareFilesMapper">
-    <select id="patentNos" >
+    <select id="patentNos">
         select DISTINCT PATENT_NO from COMPARE_FILES where
         <where>
             <if test="params.createName != '' and params.createName != null">
@@ -22,7 +22,7 @@
         </where>
         order by a.ctime ${params.order}
     </select>
-    <select id="selectedTotal" resultType="int">
+    <select id="selectedTotal" resultType="java.lang.Integer">
         select  count(*) from COMPARE_FILES where REPORT_ID=#{id}
     </select>
 </mapper>

+ 44 - 44
RMS/src/main/resources/mapper/InvalidRecord.xml

@@ -1,48 +1,48 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
 <mapper namespace="cn.cslg.report.mapper.InvalidRecordMapper">
-<!--    int deleteInvalidRecord(@Param("id") int id);-->
-    <delete id="deleteInvalidRecord">
-        delete from INVALID_RECORD where ID=#{id}
-    </delete>
-    <update id="updateInvalidRecord">
-     update INVALID_RECORD set
-         PATENT_NO=#{patentNo},PERSON=#{person},PERSON_ID=#{personId},INVALID_TIME={invalidTime},JUDGMENT_TIME=#{judgmentTime},RESULT=#{resultS},FILE_ID=#{fileId},REPORT_ID=#{reportId}
-       where ID=#{id}
-    </update>
-<!--    int addInvalidRecord(InvalidRecord invalidRecord);-->
-    <insert id="addInvalidRecord" parameterType="cn.cslg.report.entity.InvalidRecord" keyProperty="ID">
-        insert into INVALID_RECORD (PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID)
-        values(#{patentNo},#{person},#{personId},#{invalidTime},#{judgmentTime},#{resultS},#{fileId},#{reportId})
-    </insert>
-    <select id="select" resultType="cn.cslg.report.entity.InvalidRecord">
-        <bind name="n" value="(pageNO-1)pageSize"/>
-          select * from INVALID_RECORD
-        <where>
-            <if test="patentNo !='' and patentNo !=null">
-                PATENT_NO like concat('%', #{patentNo}, '%')
-            </if>
-            <if test="person !='' and person !=null">
-                and PERSON like concat('%', #{person}, '%')
-            </if>
-            <if test="personId !='' and personId !=null">
-                and PERSON_ID like concat('%', #{personId}, '%')
-            </if>
-            <if test="invalidTime !='' and invalidTime !=null">
-                and INVALID_TIME like concat('%', #{invalidTime}, '%')
-            </if>
-            <if test="judgmentTime !='' and judgmentTime !=null">
-                and `JUDGMENT_TIME` like concat('%', #{judgmentTime}, '%')
-            </if>
-            <if test="resultS !='' and resultS !=null">
-                and `RESULT` like concat('%', #{resultS}, '%')
-            </if>
-            <if test="caseDetails !='' and caseDetails !=null">
-                and CASE_DETAILS like concat('%', #{caseDetails}, '%')
-            </if>
-            <if test="fileId !='' and fileId !=null">
-                and FILE_ID like concat('%', #{fileId}, '%')
-            </if>
-        </where>
-    </select>
+<delete id="deleteInvalidRecord">
+    delete from INVALID_RECORD where ID=#{id}
+</delete>
+
+<update id="updateInvalidRecord">
+update INVALID_RECORD set
+PATENT_NO=#{patentNo},PERSON=#{person},PERSON_ID=#{personId},INVALID_TIME={invalidTime},JUDGMENT_TIME=#{judgmentTime},`RESULT`=#{resultS},FILE_ID=#{fileId},REPORT_ID=#{reportId}
+where ID=#{id}
+</update>
+
+<insert id="addInvalidRecord" >
+insert into INVALID_RECORD (PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,`RESULT`,FILE_ID,REPORT_ID)
+values(#{patentNo},#{person},#{personId},#{invalidTime},#{judgmentTime},#{resultS},#{fileId},#{reportId})
+</insert>
+<select id="select" resultType="cn.cslg.report.entity.InvalidRecord">
+<bind name="n" value="(pageNO-1)pageSize"/>
+select * from INVALID_RECORD
+<where>
+    <if test="patentNo !='' and patentNo !=null">
+        PATENT_NO like concat('%', #{patentNo}, '%')
+    </if>
+    <if test="person !='' and person !=null">
+        and PERSON like concat('%', #{person}, '%')
+    </if>
+    <if test="personId !='' and personId !=null">
+        and PERSON_ID like concat('%', #{personId}, '%')
+    </if>
+    <if test="invalidTime !='' and invalidTime !=null">
+        and INVALID_TIME like concat('%', #{invalidTime}, '%')
+    </if>
+    <if test="judgmentTime !='' and judgmentTime !=null">
+        and `JUDGMENT_TIME` like concat('%', #{judgmentTime}, '%')
+    </if>
+    <if test="resultS !='' and resultS !=null">
+        and `RESULT` like concat('%', #{resultS}, '%')
+    </if>
+    <if test="caseDetails !='' and caseDetails !=null">
+        and CASE_DETAILS like concat('%', #{caseDetails}, '%')
+    </if>
+    <if test="fileId !='' and fileId !=null">
+        and FILE_ID like concat('%', #{fileId}, '%')
+    </if>
+</where>
+</select>
 </mapper>

+ 0 - 50
RMS/src/main/resources/mapper/LitigationHistory.xml

@@ -1,50 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
-<mapper namespace="cn.cslg.report.mapper.LitigationHistoryMapper">
-<!--    int deleLitigationHistory(@Param("id") int id);-->
-    <delete id="deleLitigationHistory">
-        delete from LITIGATION_HISTORY where ID=#{id}
-    </delete>
-<!--    int addLitigationHistory(LitigationHistory litigationHistory);-->
-    <insert id="addLitigationHistory" parameterType="cn.cslg.report.entity.LitigationHistory" keyProperty="ID" >
-        insert into LITIGATION_HISTORY(PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,`RESULT`,CASE_DETAILS,FILE_ID)
-            values (plaintiff,defendant,causeOfAction,prosecutorialTime,`result`,caseDetails,fileId)
-    </insert>
-<!--    int updateLitigationHistory(LitigationHistory litigationHistory);-->
-    <update id="updateLitigationHistory" parameterType="cn.cslg.report.entity.LitigationHistory">
-        update LITIGATION_HISTORY set PLAINTIFF=#{plaintiff},
-                                     DEFENDANT=#{defendant},
-                                     CAUSE_OF_ACTION=#{causeOfAction},
-                                     `RESULT`=#{result},
-                                     CASE_DETAILS=#{caseDetails}
-                                       FILE_IDFILE_ID=#{fileId}
-    </update>
-    <select id="select" resultType="cn.cslg.report.entity.LitigationHistory">
-        <bind name="n" value="(pageNO-1)pageSize"/>
-          select * from LITIGATION_HISTORY
-              <where>
-                  <if test="plaintiff !='' and plaintiff !=null">
-                      PLAINTIFF like concat('%', #{plaintiff}, '%')
-                  </if>
-                  <if test="defendant !='' and defendant !=null">
-                      and DEFENDANT like concat('%', #{defendant}, '%')
-                  </if>
-                  <if test="causeOfAction !='' and causeOfAction !=null">
-                      and CAUSE_OF_ACTION like concat('%', #{causeOfAction}, '%')
-                  </if>
-                  <if test="prosecutorialTime !='' and prosecutorialTime !=null">
-                      and PROSECUTORIAL_TIME like concat('%', #{prosecutorialTime}, '%')
-                  </if>
-                  <if test="result !='' and result !=null">
-                      and `RESULT` like concat('%', #{result}, '%')
-                  </if>
-                  <if test="caseDetails !='' and caseDetails !=null">
-                      and CASE_DETAILS like concat('%', #{caseDetails}, '%')
-                  </if>
-                  <if test="fileId !='' and fileId !=null">
-                      and FILE_ID like concat('%', #{fileId}, '%')
-                  </if>
-              </where>
-        limit #{n},#{pageSize}
-    </select>
-</mapper>

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

@@ -0,0 +1,937 @@
+[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

File diff suppressed because it is too large
+ 1507 - 0
logs/rms/rms-info.2022-11-22.0.log