Browse Source

Merge remote-tracking branch 'origin/master'

# Conflicts:
#	RMS/src/main/java/cn/cslg/report/controller/CompareRecordsController.java
#	RMS/src/main/java/cn/cslg/report/mapper/CompareRecordsMapper.java
#	RMS/src/main/java/cn/cslg/report/service/business/CompareRecordsService.java
#	RMS/src/main/resources/mapper/CompareRecordsMapper.xml
chenyi 2 years ago
parent
commit
a796944328

+ 72 - 0
RMS/src/main/java/cn/cslg/report/common/model/SystemMO.java

@@ -0,0 +1,72 @@
+package cn.cslg.report.common.model;
+
+/**
+ * 报表系统数据 年月日、专案代码
+ */
+public class SystemMO {
+    private String year; //年
+    private String month; //月
+    private String day; //日
+    private String date; //完整日期
+    private String zadm; //专案代码
+    private String reportName;
+
+
+
+    public SystemMO(String year, String month, String day, String zadm, String report) {
+        this.year = year;
+        this.month = month;
+        this.day = day;
+        this.date = year+"-"+month+"-"+day;
+        this.zadm = zadm;
+        this.reportName=report;
+    }
+
+    public String getReportName() {
+        return reportName;
+    }
+
+    public void setReportName(String reportName) {
+        this.reportName = reportName;
+    }
+
+    public String getYear() {
+        return year;
+    }
+
+    public void setYear(String year) {
+        this.year = year;
+    }
+
+    public String getMonth() {
+        return month;
+    }
+
+    public void setMonth(String month) {
+        this.month = month;
+    }
+
+    public String getDay() {
+        return day;
+    }
+
+    public void setDay(String day) {
+        this.day = day;
+    }
+
+    public String getDate() {
+        return date;
+    }
+
+    public void setDate(String date) {
+        this.date = date;
+    }
+
+    public String getZadm() {
+        return zadm;
+    }
+
+    public void setZadm(String zadm) {
+        this.zadm = zadm;
+    }
+}

+ 11 - 0
RMS/src/main/java/cn/cslg/report/common/model/delete/PatentList.java

@@ -0,0 +1,11 @@
+package cn.cslg.report.common.model.delete;
+
+import lombok.Data;
+
+import java.util.List;
+
+@Data
+public class PatentList {
+   private List<Patents> patentsList ;
+   private String name;
+}

+ 15 - 0
RMS/src/main/java/cn/cslg/report/common/model/delete/Patents.java

@@ -0,0 +1,15 @@
+package cn.cslg.report.common.model.delete;
+
+import lombok.Data;
+import lombok.experimental.Accessors;
+
+@Data
+//@Accessors(chain = true)
+public class Patents {
+    private String name;
+    private String patentNo;
+    private String person;
+    private int id;
+    private String time;
+    private String explain;
+}

+ 76 - 186
RMS/src/main/java/cn/cslg/report/common/utils/DateUtils.java

@@ -2,7 +2,6 @@ package cn.cslg.report.common.utils;
 
 import cn.hutool.core.date.DateTime;
 import cn.hutool.core.date.DateUtil;
-import com.alibaba.fastjson.parser.ParserConfig;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
@@ -14,25 +13,18 @@ import java.util.regex.Pattern;
 
 public class DateUtils {
 
-    public static final String STARTTIME = " 00:00:00";
-    public static final String ENDTIME = " 23:59:59";
+    public static final String START_TIME = " 00:00:00";
+    public static final String END_TIME = " 23:59:59";
     public final static String FORMAT_STRING = "yyyy-MM-dd HH:mm:ss";
     public final static String[] REPLACE_STRING = new String[]{"GMT+0800", "GMT+08:00"};
     public final static String SPLIT_STRING = "(中国标准时间)";
     public static Logger log = LoggerFactory.getLogger(DateUtils.class);
-
     public static String YYYY = "yyyy";
-
     public static String YYYY_MM = "yyyy-MM";
-
     public static String YYYY_MM_DD = "yyyy-MM-dd";
-
     public static String YYYYMMDDHHMMSS = "yyyyMMddHHmmss";
-
     public static String YYYYMMDD = "yyyyMMdd";
-
     public static String YYYY_MM_DD_HH_MM_SS = "yyyy-MM-dd HH:mm:ss";
-
     private static String[] parsePatterns = {
             "yyyy-MM-dd", "yyyy-MM-dd HH:mm:ss", "yyyy-MM-dd HH:mm", "yyyy-MM",
             "yyyy/MM/dd", "yyyy/MM/dd HH:mm:ss", "yyyy/MM/dd HH:mm", "yyyy/MM",
@@ -41,18 +33,23 @@ public class DateUtils {
     public static String getDateSourceName(Date startTime, Date endTime, Integer offset, Integer index) {
         String ret = null;
         switch (offset) {
+            //月份
             case -1:
                 ret = DateUtil.format(startTime, "yyyy-MM");
                 break;
+            //季度
             case -3:
                 ret = String.format("%s-Q%s", DateUtil.format(startTime, "yyyy"), (index % 4) + 1);
                 break;
+            //半年
             case -6:
                 ret = String.format("%s-%s", DateUtil.format(startTime, "yyyy"), index % 2 == 0 ? "H1" : "H2");
                 break;
+            //1年
             case -12:
                 ret = DateUtil.format(startTime, "yyyy");
                 break;
+            //2年,3年,5年
             case -24:
             case -36:
             case -60:
@@ -93,13 +90,11 @@ public class DateUtils {
 
     /**
      * 获取现在的时间 yyyy-MM-dd HH:mm:ss
-     *
-     * @return
      */
     public static String getNowTime() {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         Date date = new Date(System.currentTimeMillis());
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
@@ -126,14 +121,13 @@ public class DateUtils {
     }
 
     /**
-     * @return
      * @author 陌溪
      * @date 2018年6月14日
      */
     public static String getNowTimeFormat(String format) {
-        SimpleDateFormat formate = new SimpleDateFormat(format);
+        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(format);
         Date date = new Date(System.currentTimeMillis());
-        return formate.format(date);
+        return simpleDateFormat.format(date);
     }
 
 
@@ -141,8 +135,7 @@ public class DateUtils {
         try {
             dateString = dateString.split(Pattern.quote(SPLIT_STRING))[0].replace(REPLACE_STRING[0], REPLACE_STRING[1]);
             SimpleDateFormat sf1 = new SimpleDateFormat("E MMM dd yyyy HH:mm:ss z", Locale.US);
-            Date date = sf1.parse(dateString);
-            return date;
+            return sf1.parse(dateString);
         } catch (Exception e) {
             throw new RuntimeException("时间转化格式错误" + "[dateString=" + dateString + "]" + "[FORMAT_STRING=" + FORMAT_STRING + "]");
         }
@@ -163,8 +156,7 @@ public class DateUtils {
                 sf1 = new SimpleDateFormat("yyyyMMdd");
             }
 
-            Date date = sf1.parse(dateString);
-            return date;
+            return sf1.parse(dateString);
         } catch (Exception e) {
             throw new RuntimeException("时间转化格式错误" + "[dateString=" + dateString + "]" + "[FORMAT_STRING=" + FORMAT_STRING + "]");
         }
@@ -172,111 +164,87 @@ public class DateUtils {
 
     /**
      * 获取今天开始的时间
-     *
-     * @return
      */
     public static String getToDayStartTime() {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
         Date date = new Date(System.currentTimeMillis());
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
      * 获取今天结束的时间
-     *
-     * @return
      */
     public static String getToDayEndTime() {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
         Date date = new Date(System.currentTimeMillis());
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
      * 获取昨天开始的时间
-     *
-     * @return
      */
-    public static String getYestodayStartTime() {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+    public static String getYesterdayStartTime() {
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
         Date date = new Date(System.currentTimeMillis() - 24 * 60 * 60 * 1000L);
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
      * 获取昨天结束的时间
-     *
-     * @return
      */
-    public static String getYestodayEndTime() {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
+    public static String getYesterdayEndTime() {
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
         Date date = new Date(System.currentTimeMillis() - 24 * 60 * 60 * 1000L);
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
      * 获取某天开始的时间
-     *
-     * @return
      */
     public static String getOneDayStartTime(String oneDay) {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
         Date date = new Date(oneDay);
-        return formate.format(date);
+        return format.format(oneDay);
     }
 
     /**
      * 获取某天开始的日期
-     *
-     * @param oneDay
-     * @return
      */
     public static String getOneDayStartTime(Date oneDay) {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
-        return formate.format(oneDay);
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        return format.format(oneDay);
     }
 
     /**
      * 获取某天结束的时间
-     *
-     * @return
      */
     public static String getOneDayEndTime(String oneDay) {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
         Date date = new Date(oneDay);
-        return formate.format(date);
+        return format.format(date);
     }
 
     /**
      * 获取某天结束的日期
-     *
-     * @param oneDay
-     * @return
      */
     public static String getOneDayEndTime(Date oneDay) {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
-        return formate.format(oneDay);
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        return format.format(oneDay);
     }
 
-
     /**
      * 获取本周开始的时间
-     *
-     * @return
      */
     public static Date getWeekStartTime() {
-        // 获得本周一0点时间
+        //获得本周一0点时间
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
         return cal.getTime();
     }
 
     /**
-     * 将  String 转换成  date
-     *
-     * @param dateTime
-     * @return
+     * 将 String 转换成 Date
      */
     public static Date strToDateTime(String dateTime) {
         Date date = null;
@@ -289,6 +257,9 @@ public class DateUtils {
         return date;
     }
 
+    /**
+     * 将 String 转换成 Date (转换格式可传入)
+     */
     public static Date strToDateTime(String dateTime, String fmt) {
         Date date = null;
         try {
@@ -301,26 +272,18 @@ public class DateUtils {
     }
 
     /**
-     * 将  date 转换成  时间戳
-     *
-     * @return
+     * 将 Date 转换成时间戳
      */
     public static Long dateToStamp(String s) throws ParseException {
-
         SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         Date date = simpleDateFormat.parse(s);
-        long ts = date.getTime();
-        return ts;
+        return date.getTime();
     }
 
     /**
-     * Date 转换成  String
-     *
-     * @param dateTime
-     * @return
+     * 将 Date 转换成 String
      */
     public static String dateTimeToStr(Date dateTime) {
-
         SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         return format.format(dateTime);
     }
@@ -333,22 +296,18 @@ public class DateUtils {
 
     /**
      * 获取本周开始的时间的字符串
-     *
-     * @return
      */
     public static String getWeekStartTimeStr() {
-        // 获得本周一0点时间
+        //获得本周一0点时间
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY);
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
-        return formate.format(cal.getTime());
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        return format.format(cal.getTime());
     }
 
     /**
      * 获取本周结束的时间
-     *
-     * @return
      */
     public static Date getWeekEndTime() {
         Calendar cal = Calendar.getInstance();
@@ -359,21 +318,17 @@ public class DateUtils {
 
     /**
      * 获取本周结束的时间的字符串
-     *
-     * @return
      */
     public static String getWeekEndTimeStr() {
         Calendar cal = Calendar.getInstance();
         cal.setTime(getWeekStartTime());
         cal.add(Calendar.DAY_OF_WEEK, 7);
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
-        return formate.format(cal.getTime());
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
+        return format.format(cal.getTime());
     }
 
     /**
      * 获取上周开始的时间的字符串
-     *
-     * @return
      */
     public static String getLastWeekStartTimeStr() {
         int weeks = -1;
@@ -381,43 +336,37 @@ public class DateUtils {
         GregorianCalendar currentDate = new GregorianCalendar();
         currentDate.add(GregorianCalendar.DATE, mondayPlus + 7 * weeks);
         Date monday = currentDate.getTime();
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
-        return formate.format(monday);
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 00:00:00");
+        return format.format(monday);
     }
 
     /**
      * 获取本月开始的时间
-     *
-     * @return
      */
     public static Date getMonthStartTime() {
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_MONTH, cal.getActualMinimum(Calendar.DAY_OF_MONTH));
         return cal.getTime();
     }
 
     /**
      * 获取本月开始的时间的字符串
-     *
-     * @return
      */
     public static String getMonthStartTimeStr() {
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_MONTH, cal.getActualMinimum(Calendar.DAY_OF_MONTH));
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
-        return formate.format(cal.getTime());
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
+        return format.format(cal.getTime());
     }
 
     /**
      * 获取本月结束的时间
-     *
-     * @return
      */
     public static Date getMonthEndTime() {
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DAY_OF_MONTH));
         cal.set(Calendar.HOUR_OF_DAY, 24);
         return cal.getTime();
@@ -425,16 +374,14 @@ public class DateUtils {
 
     /**
      * 获取本月结束的时间的字符串
-     *
-     * @return
      */
     public static String getMonthEndTimeStr() {
         Calendar cal = Calendar.getInstance();
-        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONDAY), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
+        cal.set(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), 0, 0, 0);
         cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DAY_OF_MONTH));
         cal.set(Calendar.HOUR_OF_DAY, 24);
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
-        return formate.format(cal.getTime());
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd 23:59:59");
+        return format.format(cal.getTime());
     }
 
     /**
@@ -444,53 +391,40 @@ public class DateUtils {
         Calendar a = Calendar.getInstance();
         a.set(Calendar.DATE, 1);
         a.roll(Calendar.DATE, -1);
-        int maxDate = a.get(Calendar.DATE);
-        return maxDate;
+        return a.get(Calendar.DATE);
     }
 
     /**
      * 得到二个日期间的间隔天数
-     *
-     * @param date1
-     * @param date2
-     * @return
      */
     public static int getDayByTwoDay(String date1, String date2) {
         SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");
-        Long day = 0L;
+        long day;
         try {
             Date date = myFormatter.parse(date1);
-            Date mydate = myFormatter.parse(date2);
-            day = (date.getTime() - mydate.getTime()) / (24 * 60 * 60 * 1000);
+            Date myDate = myFormatter.parse(date2);
+            day = (date.getTime() - myDate.getTime()) / (24 * 60 * 60 * 1000);
         } catch (Exception e) {
             return 0;
         }
-        return day.intValue();
+        return (int) day;
     }
 
     /**
      * 得到两个日期相差的秒数
-     *
-     * @param lastDate
-     * @param date
-     * @return
      */
     public static int getSecondByTwoDay(Date lastDate, Date date) {
-        Long second = 0L;
+        long second;
         try {
             second = (lastDate.getTime() - date.getTime()) / 1000;
         } catch (Exception e) {
             return 0;
         }
-        return second.intValue();
+        return (int) second;
     }
 
     /**
      * 判断某个日期属于本周的第几天 (星期一代表第一天)
-     *
-     * @param dateTime
-     * @return
-     * @throws ParseException
      */
     public static int getDaysByWeek(String dateTime) throws ParseException {
         Calendar cal = Calendar.getInstance();
@@ -507,63 +441,48 @@ public class DateUtils {
 
     /**
      * 判断某个日期属于本月的第几天
-     *
-     * @param dateTime
-     * @return
-     * @throws ParseException
      */
     public static int getDaysByMonth(String dateTime) throws ParseException {
         Calendar cal = Calendar.getInstance();
         SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
         Date date = dateFormat.parse(dateTime);
         cal.setTime(date);
-        int day = cal.get(Calendar.DAY_OF_MONTH);
-        return day;
+        return cal.get(Calendar.DAY_OF_MONTH);
     }
 
     /**
      * 根据年 月 获取对应的月份 天数
      */
     public static int getDaysByYearMonth(int year, int month) {
-
         Calendar a = Calendar.getInstance();
         a.set(Calendar.YEAR, year);
         a.set(Calendar.MONTH, month - 1);
         a.set(Calendar.DATE, 1);
         a.roll(Calendar.DATE, -1);
-        int maxDate = a.get(Calendar.DATE);
-        return maxDate;
+        return a.get(Calendar.DATE);
     }
 
 
     /**
      * 获取当前的年
-     *
-     * @return
      */
     public static Integer getYears() {
         Calendar calendar = new GregorianCalendar(TimeZone
                 .getDefault());
         return calendar.get(Calendar.YEAR);
-
     }
 
     /**
      * 获取当前的月
-     *
-     * @return
      */
     public static Integer getMonth() {
         Calendar calendar = new GregorianCalendar(TimeZone
                 .getDefault());
         return calendar.get(Calendar.MONTH) + 1;
-
     }
 
     /**
      * 获取当前天
-     *
-     * @return
      */
     public static Integer getDay() {
         Calendar calendar = new GregorianCalendar(TimeZone
@@ -573,24 +492,16 @@ public class DateUtils {
 
     /**
      * wx支付的过期时间
-     *
-     * @param hour
-     * @return
      */
-    @SuppressWarnings("unused")
     public static String getTime(double hour) {
-        Calendar calendar = new GregorianCalendar(TimeZone.getDefault());
         long time = (long) (System.currentTimeMillis() + hour * 60 * 60 * 1000L);
         Date date = new Date(time);
-        SimpleDateFormat formate = new SimpleDateFormat("yyyyMMddHHmmss");
-        String format = formate.format(date);
-        return format;
+        SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
+        return format.format(date);
     }
 
     /**
      * 获得当前日期与本周日相差的天数
-     *
-     * @return
      */
     private static int getMondayPlus() {
         Calendar cd = Calendar.getInstance();
@@ -609,18 +520,16 @@ public class DateUtils {
      *
      * @param date yyyy-MM-dd HH:mm:ss
      * @param day  加减的天数
-     * @return
      */
     public static Date getDate(String date, int day) {
-        SimpleDateFormat formate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+        SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
         Calendar cal = Calendar.getInstance();
+        Date beforeDate;
         try {
-            Date beforeDate = formate.parse(date);
+            beforeDate = format.parse(date);
             cal.setTime(beforeDate);
             cal.add(Calendar.DAY_OF_MONTH, day);
-            //cal.set(beforeDate.getYear(), beforeDate.getMonth(), beforeDate.getDay()+day, beforeDate.getHours(),beforeDate.getSeconds(), beforeDate.getMinutes());
-            Date newDate = cal.getTime();
-            return newDate;
+            return cal.getTime();
         } catch (ParseException e) {
             e.printStackTrace();
         }
@@ -632,7 +541,6 @@ public class DateUtils {
      *
      * @param beforeDate yyyy-MM-dd HH:mm:ss
      * @param timeSecond 加减的秒数
-     * @return
      */
     public static String getDateStr(Date beforeDate, Long timeSecond) {
         SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
@@ -648,22 +556,17 @@ public class DateUtils {
 
     /**
      * 把date转换成字符串
-     *
-     * @param date
-     * @param code 例如  yyyy-MM-dd 00:00:00
-     * @return
      */
-    public static String formateDate(Date date, String code) {
-        SimpleDateFormat formate = new SimpleDateFormat(code);
-        return formate.format(date);
-
+    public static String formatDate(Date date, String code) {
+        SimpleDateFormat format = new SimpleDateFormat(code);
+        return format.format(date);
     }
 
     public static String formatDate(Integer timestamp, String code) {
         if (timestamp == null || timestamp == 0) {
             return "";
         }
-        return formateDate(new Date(timestamp * 1000L), code);
+        return formatDate(new Date(timestamp * 1000L), code);
     }
 
     /**
@@ -683,25 +586,17 @@ public class DateUtils {
 
     /**
      * 获取过去第几天的日期
-     *
-     * @param past
-     * @return
      */
     public static String getPastDate(int past, String formatStr) {
         Calendar calendar = Calendar.getInstance();
         calendar.set(Calendar.DAY_OF_YEAR, calendar.get(Calendar.DAY_OF_YEAR) - past);
         Date today = calendar.getTime();
         SimpleDateFormat format = new SimpleDateFormat(formatStr);
-        String result = format.format(today);
-        return result;
+        return format.format(today);
     }
 
     /**
      * 获取某个时间段内所有日期
-     *
-     * @param begin
-     * @param end
-     * @return
      */
     public static List<String> getDayBetweenDates(String begin, String end) {
         Date dBegin = strToDateTime(begin);
@@ -739,7 +634,6 @@ public class DateUtils {
         long nd = 1000 * 24 * 60 * 60;
         long nh = 1000 * 60 * 60;
         long nm = 1000 * 60;
-        // long ns = 1000;
         // 获得两个时间的毫秒时间差异
         long diff = endDate.getTime() - nowDate.getTime();
         // 计算差多少天
@@ -748,8 +642,6 @@ public class DateUtils {
         long hour = diff % nd / nh;
         // 计算差多少分钟
         long min = diff % nd % nh / nm;
-        // 计算差多少秒//输出结果
-        // long sec = diff % nd % nh % nm / ns;
         return day + "天" + hour + "小时" + min + "分钟";
     }
 
@@ -767,6 +659,4 @@ public class DateUtils {
         calendar.set(Calendar.SECOND, 0);
         return calendar.getTime();
     }
-
-
 }

+ 0 - 1
RMS/src/main/java/cn/cslg/report/controller/CompareRecordsController.java

@@ -26,7 +26,6 @@ public class CompareRecordsController {
     @PostMapping(value = "/addCompareRecords")
     @Operation(summary = "增加对比记录数据")
     public String addCompareRecords(@RequestBody CompareRecords compareRecords)throws IOException{
-
        compareRecords.setPersonId(loginUtils.getId());
         return compareRecordsService.addCompareRecord(compareRecords);
     }

+ 0 - 7
RMS/src/main/java/cn/cslg/report/controller/PatentFiledController.java

@@ -78,11 +78,4 @@ public class PatentFiledController {
         }
         return Response.success(true);
     }
-    @GetMapping(value = "/getReportField")
-    @Operation(summary = "根据报告id获得自定义字段")
-    public String getReportField(int reportId) throws IOException{
-        return reportFieldService.getReportField(reportId);
-    }
-
-
 }

+ 28 - 13
RMS/src/main/java/cn/cslg/report/controller/TaskController.java

@@ -2,9 +2,12 @@ package cn.cslg.report.controller;
 
 
 import cn.cslg.report.common.core.base.Constants;
-import cn.cslg.report.common.model.BaseVO;
+import cn.cslg.report.common.model.*;
+import cn.cslg.report.common.model.delete.PatentList;
+import cn.cslg.report.common.model.delete.Patents;
 import cn.cslg.report.common.model.vo.*;
 import cn.cslg.report.common.utils.DataUtils;
+import cn.cslg.report.common.utils.DateUtils;
 import cn.cslg.report.common.utils.Response;
 import cn.cslg.report.entity.Task;
 import cn.cslg.report.service.BaseService;
@@ -27,10 +30,7 @@ import org.springframework.web.multipart.MultipartFile;
 import java.io.File;
 import java.io.IOException;
 import java.text.ParseException;
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
+import java.util.*;
 import java.util.regex.Matcher;
 import java.util.regex.Pattern;
 
@@ -116,17 +116,32 @@ public class TaskController {
         // 为表格的显示绑定行循环
         LoopRowTableRenderPolicy policy = new LoopRowTableRenderPolicy();
         // 将bz设置为行循环绑定的数据源的key,即key是bz的value会在模板中的{{bz}}处进行解析
-        Configure configure = Configure.builder().bind("bz", policy).build();
-      List<CompareFilesVO> aa =new ArrayList<>();
-        CompareFilesVO compareFilesVO =new CompareFilesVO();
-        compareFilesVO.setCurrent(111);
-        aa.add(compareFilesVO);
-        Map<String,Object> map =new HashMap<>();
-        map.put("bz",aa);
+        Configure configure = Configure.builder().bind("pss", policy).build();
+      List<Patents> aa =new ArrayList<>();
+      for(int i=0;i<5;i++) {
+          Patents patents = new Patents();
+          patents.setPatentNo("专利号"+i);
+          patents.setPerson("专利人"+i);
+          patents.setName("发明"+i);
+          patents.setId(i);
+          patents.setExplain("https://tse4-mm.cn.bing.net/th/id/OIP-C.QFdwl07_aviM1ch2KpyyFgHaEo?pid=ImgDet&rs=1");
+          patents.setTime("202"+i+"/11/11 11:11:11");
+          aa.add(patents);
+      }
+   Map<String,Object> map=     new HashMap<>();
+        PatentList patentList =new PatentList();
+        patentList.setPatentsList(aa);
+        patentList.setName("列表");
+        //1.系统数据
+        String date = DateUtils.formatDate(new Date(), DateUtils.YYYY_MM_DD);
+        String[] ds = date.split("-");
+        map.put("sys", new SystemMO(ds[0], ds[1], ds[2], "","reportName"));
+        map.put("pss",aa);
         map.put("sss","saeqeq");
-
+        map.put("tm",patentList);
         // 读取模板、数据并渲染
         XWPFTemplate template = XWPFTemplate.compile(filePath, configure).render(map);
+
 //         文件是否已存在,则删除map = {TaskController$1@15526}  size = 7
         File file = new File(outPath);
         if (file.exists()){

+ 3 - 19
RMS/src/main/java/cn/cslg/report/entity/CompareRecords.java

@@ -26,14 +26,9 @@ public class CompareRecords extends BaseEntity<CompareRecords> {
     /**
      * 位置
      */
-
     @TableField(value = "POSITION")
     private String position;
-    /*
-    栏位
-     */
-    @TableField(value = "FIELDS")
-    private String fields;
+
     /**
      * 内容
      */
@@ -55,17 +50,6 @@ public class CompareRecords extends BaseEntity<CompareRecords> {
 //    private String features;
 //    @TableField(exist = false)
 //    private List<String> featuresList;
-    @TableField(exist = false)
-    private List<CY> CY;
-
-    @Data
-    public static class CY {
-        private int id;
-        private String rightName;
-        private String content;
-
-    }
-
 
 
 
@@ -73,12 +57,12 @@ public class CompareRecords extends BaseEntity<CompareRecords> {
      * 对比人ID
      */
     @TableField(value = "PERSON_ID")
-    private int personId;
+    private String personId;
 
     /**
      * 报告ID
      */
     @TableField(value = "REPORT_ID")
-    private int reportId;
+    private String reportId;
 
 }

+ 1 - 4
RMS/src/main/java/cn/cslg/report/entity/Features.java

@@ -66,11 +66,8 @@ public class Features extends BaseEntity<Features> {
      */
     @TableField(value = "SPLIT_BY")
     private Integer splitBy;
-   /**
-     *  权要名称
-    */
+
     @TableField(value = "RIGHT_NAME")
     private String rightName;
 
-
 }

+ 0 - 4
RMS/src/main/java/cn/cslg/report/mapper/ReportFieldMapper.java

@@ -4,11 +4,7 @@ import cn.cslg.report.entity.CompareFiles;
 import cn.cslg.report.entity.ReportField;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import org.apache.ibatis.annotations.Mapper;
-import org.apache.ibatis.annotations.Param;
-
-import java.util.List;
 
 @Mapper
 public interface ReportFieldMapper extends BaseMapper<ReportField> {
-    List<ReportField> find(@Param("reportId") int reportId);
 }

+ 3 - 6
RMS/src/main/java/cn/cslg/report/service/business/ReportFieldService.java

@@ -19,7 +19,6 @@ import org.springframework.context.annotation.Lazy;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;
 
-import java.io.IOException;
 import java.util.*;
 import java.util.stream.Collectors;
 
@@ -35,7 +34,7 @@ import java.util.stream.Collectors;
 @Service
 @RequiredArgsConstructor(onConstructor_ = {@Lazy})
 public class ReportFieldService extends ServiceImpl<ReportFieldMapper, ReportField> {
- private final ReportFieldMapper reportFieldMapper;
+
  private  final LoginUtils loginUtils;
  private  final ReportFieldTextService reportFieldTextService;
  private  final ReportFieldOptionService reportFieldOptionService;
@@ -146,8 +145,6 @@ public class ReportFieldService extends ServiceImpl<ReportFieldMapper, ReportFie
         queryWrapper.eq(ReportField::getReportId, projectId);
         return this.getOne(queryWrapper);
     }
-    public String getReportField(int id)throws IOException{
-        List<ReportField> reportFields = reportFieldMapper.find(id);
-        return Response.success(reportFields);
-    }
+
+
 }

+ 0 - 8
RMS/src/main/resources/mapper/ReportFieldMapper.xml

@@ -1,8 +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.ReportFieldMapper">
-    <select id="find" resultType="cn.cslg.report.entity.ReportField">
-     select * from OS_PATENT_FIELD where REPORT_ID=#{reportId}
-    </select>
-
-</mapper>

+ 0 - 896
logs/rms/rms-debug.2022-11-23.0.log

@@ -1,896 +0,0 @@
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:57:25.548 DEBUG 4380 [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-23 09:57:25.583 DEBUG 4380 [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-23 09:57:25.623 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:57:30.332 DEBUG 4380 [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-23 09:57:30.333 DEBUG 4380 [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-23 09:57:30.350 DEBUG 4380 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:57:40.134 DEBUG 4380 [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-23 09:57:40.135 DEBUG 4380 [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-23 09:57:40.152 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:05.955 DEBUG 4380 [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-23 09:58:05.955 DEBUG 4380 [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-23 09:58:05.971 DEBUG 4380 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:16.184 DEBUG 4380 [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-23 09:58:16.184 DEBUG 4380 [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-23 09:58:16.200 DEBUG 4380 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:19.783 DEBUG 4380 [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-23 09:58:19.783 DEBUG 4380 [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-23 09:58:19.801 DEBUG 4380 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:38.406 DEBUG 4380 [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-23 09:58:38.406 DEBUG 4380 [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-23 09:58:38.422 DEBUG 4380 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.923 DEBUG 4380 [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-23 09:58:41.923 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.942 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.948 DEBUG 4380 [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-23 09:58:41.948 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.965 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.971 DEBUG 4380 [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-23 09:58:41.971 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:41.988 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:44.163 DEBUG 4380 [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-23 09:58:44.164 DEBUG 4380 [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-23 09:58:44.181 DEBUG 4380 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:58:50.120 DEBUG 4380 [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-23 09:58:50.120 DEBUG 4380 [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-23 09:58:50.136 DEBUG 4380 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:59:27.922 DEBUG 4380 [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-23 09:59:27.922 DEBUG 4380 [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-23 09:59:27.937 DEBUG 4380 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 09:59:39.822 DEBUG 4380 [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-23 09:59:39.822 DEBUG 4380 [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-23 09:59:39.838 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:06.960 DEBUG 4380 [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-23 10:01:06.960 DEBUG 4380 [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-23 10:01:06.976 DEBUG 4380 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:08.388 DEBUG 4380 [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-23 10:01:08.388 DEBUG 4380 [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-23 10:01:08.415 DEBUG 4380 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:11.129 DEBUG 4380 [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-23 10:01:11.130 DEBUG 4380 [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-23 10:01:11.147 DEBUG 4380 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:20.815 DEBUG 4380 [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-23 10:01:20.815 DEBUG 4380 [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-23 10:01:20.847 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:27.588 DEBUG 4380 [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-23 10:01:27.588 DEBUG 4380 [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-23 10:01:27.603 DEBUG 4380 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:29.150 DEBUG 4380 [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-23 10:01:29.150 DEBUG 4380 [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-23 10:01:29.166 DEBUG 4380 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:31.320 DEBUG 4380 [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-23 10:01:31.320 DEBUG 4380 [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-23 10:01:31.351 DEBUG 4380 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:34.273 DEBUG 4380 [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-23 10:01:34.273 DEBUG 4380 [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-23 10:01:34.288 DEBUG 4380 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:35.809 DEBUG 4380 [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-23 10:01:35.809 DEBUG 4380 [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-23 10:01:35.825 DEBUG 4380 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:40.841 DEBUG 4380 [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-23 10:01:40.841 DEBUG 4380 [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-23 10:01:40.858 DEBUG 4380 [http-nio-8885-exec-10] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:01:44.706 DEBUG 4380 [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-23 10:01:44.706 DEBUG 4380 [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-23 10:01:44.723 DEBUG 4380 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:10.674 DEBUG 4380 [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-23 10:02:10.675 DEBUG 4380 [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-23 10:02:10.693 DEBUG 4380 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.055 DEBUG 4380 [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-23 10:02:51.055 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.073 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.075 DEBUG 4380 [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-23 10:02:51.075 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.091 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.091 DEBUG 4380 [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-23 10:02:51.092 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.109 DEBUG 4380 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:02:51.438 DEBUG 4380 [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-23 10:02:51.438 DEBUG 4380 [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-23 10:02:51.455 DEBUG 4380 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:03:14.973 DEBUG 4380 [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-23 10:03:14.974 DEBUG 4380 [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-23 10:03:14.991 DEBUG 4380 [http-nio-8885-exec-4] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:03:22.823 DEBUG 4380 [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-23 10:03:22.823 DEBUG 4380 [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-23 10:03:22.838 DEBUG 4380 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:03:26.995 DEBUG 4380 [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-23 10:03:26.996 DEBUG 4380 [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-23 10:03:27.013 DEBUG 4380 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:03:30.739 DEBUG 4380 [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-23 10:03:30.755 DEBUG 4380 [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-23 10:03:30.771 DEBUG 4380 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:03:33.447 DEBUG 4380 [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-23 10:03:33.448 DEBUG 4380 [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-23 10:03:33.465 DEBUG 4380 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.393 DEBUG 10536 [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-23 10:21:54.412 DEBUG 10536 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.454 DEBUG 10536 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.471 DEBUG 10536 [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-23 10:21:54.472 DEBUG 10536 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.491 DEBUG 10536 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.534 DEBUG 10536 [http-nio-8885-exec-5] 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-23 10:21:54.535 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 154(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.553 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.582 DEBUG 10536 [http-nio-8885-exec-5] 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-23 10:21:54.583 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 154(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.600 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.603 DEBUG 10536 [http-nio-8885-exec-5] 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-23 10:21:54.604 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 154(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:21:54.624 DEBUG 10536 [http-nio-8885-exec-5] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:25:35.494 DEBUG 10536 [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-23 10:25:35.495 DEBUG 10536 [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-23 10:25:35.513 DEBUG 10536 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:25:45.094 DEBUG 10536 [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-23 10:25:45.094 DEBUG 10536 [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-23 10:25:45.110 DEBUG 10536 [http-nio-8885-exec-1] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:26:27.391 DEBUG 10536 [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-23 10:26:27.392 DEBUG 10536 [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-23 10:26:27.410 DEBUG 10536 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.536 DEBUG 10536 [http-nio-8885-exec-6] 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-23 10:27:00.536 DEBUG 10536 [http-nio-8885-exec-6] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.555 DEBUG 10536 [http-nio-8885-exec-6] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.557 DEBUG 10536 [http-nio-8885-exec-6] 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-23 10:27:00.557 DEBUG 10536 [http-nio-8885-exec-6] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.575 DEBUG 10536 [http-nio-8885-exec-6] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.622 DEBUG 10536 [http-nio-8885-exec-4] 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-23 10:27:00.623 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.641 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.645 DEBUG 10536 [http-nio-8885-exec-4] 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-23 10:27:00.646 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.663 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.664 DEBUG 10536 [http-nio-8885-exec-4] 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-23 10:27:00.664 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:27:00.683 DEBUG 10536 [http-nio-8885-exec-4] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.158 DEBUG 9988 [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-23 10:28:19.192 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.249 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.261 DEBUG 9988 [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-23 10:28:19.262 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.283 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.292 DEBUG 9988 [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-23 10:28:19.293 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:19.313 DEBUG 9988 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.273 DEBUG 9988 [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-23 10:28:25.273 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 57(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.289 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.289 DEBUG 9988 [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-23 10:28:25.289 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.304 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.304 DEBUG 9988 [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-23 10:28:25.304 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:28:25.337 DEBUG 9988 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:02.392 DEBUG 10620 [http-nio-8885-exec-1] 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-23 10:32:02.412 DEBUG 10620 [http-nio-8885-exec-1] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.306 DEBUG 10620 [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-23 10:32:52.307 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 59(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.342 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.348 DEBUG 10620 [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-23 10:32:52.349 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.366 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.371 DEBUG 10620 [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-23 10:32:52.372 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:32:52.389 DEBUG 10620 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:33:43.831 DEBUG 1948 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO, PERSON, INVALID_TIME, JUDGMENT_TIME ) VALUES ( ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:33:43.856 DEBUG 1948 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 123(String), 435(String), 2022-11-01(String), 2022-11-02(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:33:43.893 DEBUG 1948 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:36:56.047 DEBUG 1948 [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-23 10:36:56.047 DEBUG 1948 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:38:58.506 DEBUG 1948 [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-23 10:38:58.507 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:38:58.552 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:38:58.566 DEBUG 1948 [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-23 10:38:58.566 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:38:58.585 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:40:00.211 DEBUG 1948 [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-23 10:40:00.212 DEBUG 1948 [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-23 10:40:00.230 DEBUG 1948 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:40:47.402 DEBUG 1948 [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-23 10:40:47.402 DEBUG 1948 [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-23 10:40:47.419 DEBUG 1948 [http-nio-8885-exec-6] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:40:51.424 DEBUG 1948 [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-23 10:40:51.425 DEBUG 1948 [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-23 10:40:51.442 DEBUG 1948 [http-nio-8885-exec-7] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:41:17.049 DEBUG 1948 [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-23 10:41:17.050 DEBUG 1948 [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-23 10:41:17.067 DEBUG 1948 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:41:23.272 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:41:23.272 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 1111(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:41:23.308 DEBUG 1948 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:43:37.282 DEBUG 1948 [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-23 10:43:37.282 DEBUG 1948 [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-23 10:43:37.300 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.AssoTaskPersonelMapper.getPatentNumber <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:44:52.236 DEBUG 1948 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO, PERSON, INVALID_TIME, JUDGMENT_TIME ) VALUES ( ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:44:52.236 DEBUG 1948 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 12(String), 32(String), 2022-11-02(String), 2022-11-09(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:44:52.267 DEBUG 1948 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.079 DEBUG 1948 [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-23 10:45:07.080 DEBUG 1948 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.098 DEBUG 1948 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.102 DEBUG 1948 [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-23 10:45:07.102 DEBUG 1948 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList ==> Parameters: REPORT_TYPE(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.120 DEBUG 1948 [http-nio-8885-exec-7] cn.cslg.report.mapper.SystemDictItemMapper.selectList <==      Total: 7
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.200 DEBUG 1948 [http-nio-8885-exec-8] 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-23 10:45:07.201 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.218 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.247 DEBUG 1948 [http-nio-8885-exec-8] 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-23 10:45:07.248 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 114(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.264 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.267 DEBUG 1948 [http-nio-8885-exec-8] 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-23 10:45:07.268 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 114(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:07.288 DEBUG 1948 [http-nio-8885-exec-8] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 10:45:09.016 DEBUG 1948 [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-23 10:45:09.016 DEBUG 1948 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.addLitigationHistory ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:05.635 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.insert ==>  Preparing: INSERT INTO LITIGATION_HISTORY ( ID, PLAINTIFF, DEFENDANT, CAUSE_OF_ACTION, PROSECUTORIAL_TIME, RESULT, CASE_DETAILS, FILE_ID, REMARK, COURT, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:05.660 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), 2022-11-23 00:00:00.0(Timestamp), 0(Integer), string(String), 0(Integer), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:05.702 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:54.663 DEBUG 1656 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.deleteById ==>  Preparing: DELETE FROM LITIGATION_HISTORY WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:54.663 DEBUG 1656 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.deleteById ==> Parameters: 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:30:54.704 DEBUG 1656 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:31:02.936 DEBUG 1656 [http-nio-8885-exec-7] cn.cslg.report.mapper.LitigationHistoryMapper.updateById ==>  Preparing: UPDATE LITIGATION_HISTORY SET PLAINTIFF=?, DEFENDANT=?, CAUSE_OF_ACTION=?, PROSECUTORIAL_TIME=?, RESULT=?, CASE_DETAILS=?, FILE_ID=?, REMARK=?, COURT=?, PATENT_NO=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:31:02.940 DEBUG 1656 [http-nio-8885-exec-7] cn.cslg.report.mapper.LitigationHistoryMapper.updateById ==> Parameters: string(String), string(String), string(String), 2022-11-23 00:00:00.0(Timestamp), 0(Integer), string(String), 0(Integer), string(String), string(String), string(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:31:02.979 DEBUG 1656 [http-nio-8885-exec-7] cn.cslg.report.mapper.LitigationHistoryMapper.updateById <==    Updates: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:45.725 DEBUG 1656 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:45.726 DEBUG 1656 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:45.755 DEBUG 1656 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:48.355 DEBUG 1656 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==>  Preparing: SELECT ID,TIME,EVENT,EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:48.355 DEBUG 1656 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:51.205 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:51.205 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:32:51.228 DEBUG 1656 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectList <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:01.962 DEBUG 1656 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:01.962 DEBUG 1656 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:01.983 DEBUG 1656 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:05.411 DEBUG 1656 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==>  Preparing: SELECT ID,TIME,EVENT,EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:05.412 DEBUG 1656 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:09.949 DEBUG 1656 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY VALUES
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:09.950 DEBUG 1656 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:20.191 DEBUG 1656 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==>  Preparing: SELECT ID,TIME,EVENT,EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:20.191 DEBUG 1656 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:23.415 DEBUG 1656 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY VALUES
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:33:23.415 DEBUG 1656 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:34:59.121 DEBUG 4036 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:34:59.145 DEBUG 4036 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:35:03.803 DEBUG 4036 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:35:03.803 DEBUG 4036 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:17.457 DEBUG 9796 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:17.480 DEBUG 9796 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:35.752 DEBUG 2740 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:35.772 DEBUG 2740 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:38.829 DEBUG 2740 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:38.830 DEBUG 2740 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:39.928 DEBUG 2740 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:39:39.929 DEBUG 2740 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:40:34.981 DEBUG 2740 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:40:34.982 DEBUG 2740 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 1000(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:41:38.659 DEBUG 2740 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReferencesMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:41:38.660 DEBUG 2740 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReferencesMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:41:49.452 DEBUG 2740 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.insert ==>  Preparing: INSERT INTO REFERENCES ( PATENT_NO ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:41:49.453 DEBUG 2740 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.insert ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:19.240 DEBUG 8316 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:19.262 DEBUG 8316 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:19.303 DEBUG 8316 [http-nio-8885-exec-5] cn.cslg.report.mapper.LitigationHistoryMapper.selectList <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:21.120 DEBUG 8316 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:21.122 DEBUG 8316 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:22.698 DEBUG 8316 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:22.699 DEBUG 8316 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.086 DEBUG 8316 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.insert ==>  Preparing: INSERT INTO LITIGATION_HISTORY ( PLAINTIFF, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.086 DEBUG 8316 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.insert ==> Parameters: 如图(String), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.141 DEBUG 8316 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.491 DEBUG 8316 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.492 DEBUG 8316 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:25.511 DEBUG 8316 [http-nio-8885-exec-9] cn.cslg.report.mapper.LitigationHistoryMapper.selectList <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:31.918 DEBUG 8316 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:31.918 DEBUG 8316 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:31.938 DEBUG 8316 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:34.411 DEBUG 8316 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==>  Preparing: SELECT ID,TIME,EVENT,EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:34.412 DEBUG 8316 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:36.172 DEBUG 8316 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.selectList ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:36.172 DEBUG 8316 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:44.025 DEBUG 8316 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:42:44.026 DEBUG 8316 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), string(String), string(String), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:50:15.494 DEBUG 11812 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==>  Preparing: SELECT ID,TIME,EVENT,EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 11:50:15.514 DEBUG 11812 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectList ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 12:22:23.882 DEBUG 10784 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( ID, TIME, EVENT, EXPLAIN, FILE_ID, REPORT_ID, PATENT_NO ) VALUES ( ?, ?, ?, ?, ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 12:22:23.906 DEBUG 10784 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 0(Integer), string(String), string(String), string(String), 0(Integer), 0(Integer), string(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:21:34.394 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:21:34.426 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:21:34.461 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:23:09.802 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:23:09.802 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:23:09.836 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:24:52.437 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:24:52.437 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:24:52.470 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.711 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.711 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.750 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.754 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.755 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:42.774 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.609 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.610 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.629 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.630 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.630 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:43.652 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 6
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:45.409 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:45.410 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 6(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:45.447 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:46.984 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:46.985 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:47.002 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:47.003 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:47.003 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:47.022 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 5
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:48.189 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:48.190 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 5(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:48.227 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.353 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.353 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.372 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.373 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.373 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:49.392 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:50.511 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:50.513 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 4(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:50.549 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.655 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.655 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.673 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.674 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.674 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:51.692 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:55.587 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.deleteById ==>  Preparing: DELETE FROM PATENT_REFERENCES WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:55.588 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.deleteById ==> Parameters: 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:55.625 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.902 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.902 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.921 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.923 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.924 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:56.942 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:59.109 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:59.109 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:59.128 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:59.128 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,TIME,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:32:59.129 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:03.575 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:03.575 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:03.593 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:03.593 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,TIME,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:03.594 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.100 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.100 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.110 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.110 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.110 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:04.126 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:05.251 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:05.252 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:05.269 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.561 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.561 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.579 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.579 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.580 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:07.597 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.220 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.221 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.238 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.239 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.239 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.257 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.474 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.474 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.492 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.492 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.493 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:15.511 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.475 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.475 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.493 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.494 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.494 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:16.514 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.533 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.534 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.553 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.555 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.556 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.574 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.804 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.804 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:17.823 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:19.204 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:19.204 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:19.234 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:19.236 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,TIME,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:33:19.236 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:35:06.583 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:35:06.583 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-02(String), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:15.029 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:15.029 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:15.047 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:25.938 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( INVALID_TIME, JUDGMENT_TIME ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:25.938 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 2022-11-01(String), 2022-11-02(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:25.978 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:26.313 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:26.313 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:26.331 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:50.104 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:50.105 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:36:50.125 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.346 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO, PERSON ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.346 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 123(String), 三代人若(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.383 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.632 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.632 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:10.650 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:52.932 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:52.933 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:52.951 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:59.477 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:59.477 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:37:59.495 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.590 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.590 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.627 DEBUG 7864 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.963 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.964 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.981 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.981 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:03.982 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:38:04.000 DEBUG 7864 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.674 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==>  Preparing: UPDATE INVALID_RECORD SET PATENT_NO=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.674 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==> Parameters: EP3869981A1(String), 21(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.708 DEBUG 7864 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.updateById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.911 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.912 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.929 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.930 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.930 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:39:37.948 DEBUG 7864 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.708 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.708 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.727 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.727 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.728 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:23.745 DEBUG 7864 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.429 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.429 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.446 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.446 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.447 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:25.464 DEBUG 7864 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.096 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.096 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 12(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.133 DEBUG 7864 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.475 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.476 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.494 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.494 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.495 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:40:30.512 DEBUG 7864 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:11.329 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:11.329 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:11.347 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:11.347 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,TIME,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:11.347 DEBUG 7864 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:14.714 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:14.714 DEBUG 7864 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-02(String), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.403 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.461 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.523 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.588 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.590 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:45.618 DEBUG 2972 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.851 DEBUG 2972 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.852 DEBUG 2972 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-10(String), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.894 DEBUG 2972 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.944 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.944 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.988 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.990 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:51.990 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:42:52.009 DEBUG 2972 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.444 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.463 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.499 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.503 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.504 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:26.525 DEBUG 14180 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.766 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.767 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.785 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.786 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.786 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:46:33.805 DEBUG 14180 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.848 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.848 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.866 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.867 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.867 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:47:29.886 DEBUG 14180 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.436 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.455 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.494 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.498 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.499 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:10.519 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:39.834 DEBUG 13328 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById ==>  Preparing: DELETE FROM REVIEW_HISTORY WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:39.835 DEBUG 13328 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById ==> Parameters: 3(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:39.871 DEBUG 13328 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.912 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.912 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.929 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.930 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.931 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:40.947 DEBUG 13328 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:42.799 DEBUG 13328 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById ==>  Preparing: DELETE FROM REVIEW_HISTORY WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:42.799 DEBUG 13328 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById ==> Parameters: 5(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:42.834 DEBUG 13328 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:43.765 DEBUG 13328 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:43.765 DEBUG 13328 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:48:43.782 DEBUG 13328 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.146 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.147 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.164 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.164 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.165 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:31.182 DEBUG 13328 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.381 DEBUG 13328 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PERSON_ID ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.382 DEBUG 13328 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: 213(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.417 DEBUG 13328 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.753 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.754 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.771 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.772 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.772 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:35.789 DEBUG 13328 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.913 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.913 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.930 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.931 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.931 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:40.947 DEBUG 13328 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.337 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.337 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.355 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.356 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.357 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:43.372 DEBUG 13328 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.725 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.726 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.743 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.743 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.744 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:49:45.762 DEBUG 13328 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.434 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.452 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-02 00:00:00.0(Timestamp), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.488 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.605 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.605 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.628 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.631 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.632 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:51:55.649 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.266 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==>  Preparing: UPDATE REVIEW_HISTORY SET REVIEW_TIME=?, PATENT_NO=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.267 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==> Parameters: 2022-11-02 00:00:00.0(Timestamp), EP3869981A1(String), 6(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.300 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.updateById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.671 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.671 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.688 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.689 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.689 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:52:11.705 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.537 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.537 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.554 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.555 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.555 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 14:54:13.571 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.498 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.498 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.516 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.516 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.517 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:20:57.534 DEBUG 14392 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:02.915 DEBUG 14392 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, REVIEW_EVENT, PATENT_NO ) VALUES ( ?, ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:02.915 DEBUG 14392 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-16 00:00:00.0(Timestamp), W4E(String), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:02.951 DEBUG 14392 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.284 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.284 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.302 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.302 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.303 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:03.321 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.308 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.309 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.327 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.328 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.328 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:21:07.345 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.720 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.721 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.739 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.740 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.740 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:35.759 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.023 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.023 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.041 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.042 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==>  Preparing: SELECT ID,PLAINTIFF,DEFENDANT,CAUSE_OF_ACTION,PROSECUTORIAL_TIME,RESULT,CASE_DETAILS,FILE_ID,REMARK,COURT,PATENT_NO FROM LITIGATION_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.042 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:44.061 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.LitigationHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.813 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.813 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.831 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.833 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.835 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:24:56.857 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.719 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.720 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.737 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.738 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.739 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:25:05.758 DEBUG 14392 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.643 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO ) VALUES ( ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.643 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.680 DEBUG 14392 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.895 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.895 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.912 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.913 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.913 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:27:43.931 DEBUG 14392 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.398 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.399 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.416 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.417 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.417 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:12.436 DEBUG 14392 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.286 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.insert ==>  Preparing: INSERT INTO PATENT_REFERENCES ( PATENT_NO, REFERENCES_NAME ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.287 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.insert ==> Parameters: EP3869981A1(String), FDG(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.323 DEBUG 14392 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReferencesMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.561 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.561 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.579 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.581 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.582 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:28:19.602 DEBUG 14392 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.540 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.557 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.602 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.606 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.607 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:41.628 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.102 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO, NEWPATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.103 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: EP3869981A1(String), 12(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.143 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.499 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.499 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.519 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.520 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.520 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:45.539 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:59.294 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.deleteById ==>  Preparing: DELETE FROM INVALID_RECORD WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:59.297 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.deleteById ==> Parameters: 24(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:37:59.338 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.443 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.444 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.464 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.466 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.467 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.489 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.888 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.deleteById ==>  Preparing: DELETE FROM INVALID_RECORD WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.888 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.deleteById ==> Parameters: 21(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:00.929 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.deleteById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.030 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.030 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.050 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.051 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.051 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:02.071 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.190 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert ==>  Preparing: INSERT INTO INVALID_RECORD ( PATENT_NO, NEWPATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.190 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert ==> Parameters: EP3869981A1(String), CN216701633U(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.231 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.570 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.570 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.589 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.590 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.590 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:14.611 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:34.997 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==>  Preparing: UPDATE INVALID_RECORD SET PATENT_NO=?, NEWPATENT_NO=?, PERSON=?, INVALID_TIME=?, JUDGMENT_TIME=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:34.998 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==> Parameters: EP3869981A1(String), CN216701633U(String), 12(String), 2022-11-01(String), 2022-11-10(String), 26(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.037 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.InvalidRecordMapper.updateById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.424 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.424 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.444 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.445 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.445 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:35.465 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:59.959 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:59.960 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:59.980 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:59.980 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:38:59.981 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:00.000 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.781 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.781 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.802 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.803 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.803 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:02.823 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:27.093 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==>  Preparing: UPDATE INVALID_RECORD SET PATENT_NO=?, NEWPATENT_NO=?, PERSON=?, INVALID_TIME=?, JUDGMENT_TIME=?, RESULT=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:27.093 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.updateById ==> Parameters: EP3869981A1(String), CN216701633U(String), 12(String), 2022-11-01(String), 2022-11-10(String), 测试(String), 26(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.936 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM PATENT_REFERENCES WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.936 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.956 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.957 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,REFERENCES_NAME,FILE_URL,CREATE_TIME,REFERENCES_EXPLAIN,FILE_NAME FROM PATENT_REFERENCES WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.957 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:30.977 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReferencesMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.454 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.455 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.474 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.475 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.475 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:35.495 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.777 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.778 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.797 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.798 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.798 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:39:36.818 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.441 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.441 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.461 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.462 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.462 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:28.481 DEBUG 15612 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.949 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.950 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.969 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.970 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.970 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:31.989 DEBUG 15612 [http-nio-8885-exec-2] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.438 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.438 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.458 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.460 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.461 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:35.483 DEBUG 15612 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.480 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.481 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.501 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.503 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.504 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:40:46.526 DEBUG 15612 [http-nio-8885-exec-3] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.143 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.143 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.163 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.164 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.164 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:02.184 DEBUG 15612 [http-nio-8885-exec-6] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.426 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==>  Preparing: UPDATE REVIEW_HISTORY SET REVIEW_TIME=?, REVIEW_EVENT=?, PATENT_NO=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.428 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==> Parameters: 2022-11-16 00:00:00.0(Timestamp), W4E(String), EP3869981A1(String), 7(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.466 DEBUG 15612 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.updateById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.703 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.703 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.723 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.723 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.724 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:17.743 DEBUG 15612 [http-nio-8885-exec-10] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.352 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.352 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.373 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.375 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.376 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:47.397 DEBUG 15612 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.142 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==>  Preparing: UPDATE REVIEW_HISTORY SET REVIEW_TIME=?, REVIEW_EVENT=?, REVIEW_EXPLAIN=?, PATENT_NO=? WHERE ID=?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.142 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.updateById ==> Parameters: 2022-11-16 00:00:00.0(Timestamp), W4E(String), 11(String), EP3869981A1(String), 7(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.181 DEBUG 15612 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.updateById <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.411 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.411 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.430 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.431 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.431 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:41:54.450 DEBUG 15612 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:16.654 DEBUG 11648 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:16.675 DEBUG 11648 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-10 00:00:00.0(Timestamp), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:16.717 DEBUG 11648 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.152 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.153 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.178 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.182 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.183 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:42:17.203 DEBUG 11648 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.109 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.110 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.128 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.129 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.129 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:43:45.149 DEBUG 11648 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.822 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.823 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.841 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.842 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.842 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:26.862 DEBUG 11648 [http-nio-8885-exec-7] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 3
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.293 DEBUG 11648 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.295 DEBUG 11648 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-25 00:00:00.0(Timestamp), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.333 DEBUG 11648 [http-nio-8885-exec-8] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.369 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.370 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.388 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.389 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.389 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:44:31.409 DEBUG 11648 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.038 DEBUG 16228 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.058 DEBUG 16228 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-10 00:00:00.0(Timestamp), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.095 DEBUG 16228 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.207 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.208 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.231 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.235 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.236 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:45:48.264 DEBUG 16228 [http-nio-8885-exec-1] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 5
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.569 DEBUG 16228 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==>  Preparing: INSERT INTO REVIEW_HISTORY ( REVIEW_TIME, PATENT_NO ) VALUES ( ?, ? )
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.569 DEBUG 16228 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert ==> Parameters: 2022-11-09 00:00:00.0(Timestamp), EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.605 DEBUG 16228 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReviewHistoryMapper.insert <==    Updates: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.835 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.836 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.853 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.855 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.856 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:46:50.874 DEBUG 16228 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 6
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.920 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM INVALID_RECORD WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.921 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.938 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.938 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==>  Preparing: SELECT ID,PATENT_NO,NEWPATENT_NO,PERSON,PERSON_ID,INVALID_TIME,JUDGMENT_TIME,RESULT,FILE_ID,REPORT_ID FROM INVALID_RECORD WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.939 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:47:55.956 DEBUG 16228 [http-nio-8885-exec-5] cn.cslg.report.mapper.InvalidRecordMapper.selectPage <==      Total: 2
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:17.231 DEBUG 10576 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:17.250 DEBUG 10576 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:17.287 DEBUG 10576 [http-nio-8885-exec-4] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.685 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==>  Preparing: SELECT COUNT(*) AS total FROM REVIEW_HISTORY WHERE (PATENT_NO = ?)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.686 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount ==> Parameters: EP3869981A1(String)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.704 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.707 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==>  Preparing: SELECT ID,REVIEW_TIME AS time,REVIEW_EVENT AS event,REVIEW_EXPLAIN,FILE_ID,REPORT_ID,PATENT_NO FROM REVIEW_HISTORY WHERE (PATENT_NO = ?) LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.708 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage ==> Parameters: EP3869981A1(String), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:50:46.729 DEBUG 10576 [http-nio-8885-exec-5] cn.cslg.report.mapper.ReviewHistoryMapper.selectPage <==      Total: 6
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.156 DEBUG 10576 [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-23 15:54:59.157 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectCount ==> Parameters: 0(Integer), 154(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.176 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.182 DEBUG 10576 [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-23 15:54:59.183 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount ==> Parameters: 0(Integer), 154(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.200 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage_mpCount <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.201 DEBUG 10576 [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,SIGN_PATENT_NO FROM TASK WHERE (TASK_STATUS = ? AND HANDLE_PERSON_ID = ?) ORDER BY ID DESC LIMIT ?
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.202 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage ==> Parameters: 0(Integer), 154(Integer), 10(Long)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:54:59.222 DEBUG 10576 [http-nio-8885-exec-7] cn.cslg.report.mapper.TaskMapper.selectPage <==      Total: 1
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.486 DEBUG 10576 [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-23 15:55:01.487 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 59(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.506 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.511 DEBUG 10576 [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-23 15:55:01.512 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.531 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.536 DEBUG 10576 [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-23 15:55:01.536 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:01.555 DEBUG 10576 [http-nio-8885-exec-9] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.800 DEBUG 10576 [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-23 15:55:10.801 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 59(String), 1(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.819 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.821 DEBUG 10576 [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-23 15:55:10.822 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.840 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.841 DEBUG 10576 [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-23 15:55:10.841 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:10.859 DEBUG 10576 [http-nio-8885-exec-2] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.619 DEBUG 10576 [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-23 15:55:11.619 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList ==> Parameters: 59(String), 0(Integer)
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.638 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.AssoTaskPersonelMapper.selectList <==      Total: 4
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.639 DEBUG 10576 [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-23 15:55:11.640 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.657 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.ImportTaskMapper.selectList <==      Total: 0
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.658 DEBUG 10576 [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-23 15:55:11.658 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById ==> Parameters: null
-[rms:0.0.0.0:8885] [,] 2022-11-23 15:55:11.676 DEBUG 10576 [http-nio-8885-exec-3] cn.cslg.report.mapper.ReportMapper.selectById <==      Total: 0

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