lwhhszx 2 年 前
コミット
4981fa963e

+ 1 - 0
.idea/encodings.xml

@@ -2,5 +2,6 @@
 <project version="4">
   <component name="Encoding">
     <file url="file://$PROJECT_DIR$/PAS/src/main/java" charset="UTF-8" />
+    <file url="file://$PROJECT_DIR$/PAS/src/main/resources" charset="UTF-8" />
   </component>
 </project>

+ 10 - 0
.idea/jarRepositories.xml

@@ -17,9 +17,19 @@
       <option name="url" value="https://maven.aliyun.com/repository/public/" />
     </remote-repository>
     <remote-repository>
+      <option name="id" value="nexus-aliyun" />
+      <option name="name" value="nexus-aliyun" />
+      <option name="url" value="http://maven.aliyun.com/nexus/content/groups/public/" />
+    </remote-repository>
+    <remote-repository>
       <option name="id" value="jboss.community" />
       <option name="name" value="JBoss Community repository" />
       <option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
     </remote-repository>
+    <remote-repository>
+      <option name="id" value="central" />
+      <option name="name" value="Central Repository" />
+      <option name="url" value="https://maven.aliyun.com/repository/public" />
+    </remote-repository>
   </component>
 </project>

+ 4 - 4
.idea/libraries/Maven__com_alibaba_druid_1_1_10.xml

@@ -1,13 +1,13 @@
 <component name="libraryTable">
-  <library name="Maven: com.alibaba:druid:1.1.10">
+  <library name="Maven: com.alibaba:druid:1.1.20">
     <CLASSES>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.10/druid-1.1.10.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.20/druid-1.1.20.jar!/" />
     </CLASSES>
     <JAVADOC>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.10/druid-1.1.10-javadoc.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.20/druid-1.1.20-javadoc.jar!/" />
     </JAVADOC>
     <SOURCES>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.10/druid-1.1.10-sources.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid/1.1.20/druid-1.1.20-sources.jar!/" />
     </SOURCES>
   </library>
 </component>

+ 4 - 4
.idea/libraries/Maven__com_alibaba_druid_spring_boot_starter_1_1_10.xml

@@ -1,13 +1,13 @@
 <component name="libraryTable">
-  <library name="Maven: com.alibaba:druid-spring-boot-starter:1.1.10">
+  <library name="Maven: com.alibaba:druid-spring-boot-starter:1.1.20">
     <CLASSES>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.10/druid-spring-boot-starter-1.1.10.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.20/druid-spring-boot-starter-1.1.20.jar!/" />
     </CLASSES>
     <JAVADOC>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.10/druid-spring-boot-starter-1.1.10-javadoc.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.20/druid-spring-boot-starter-1.1.20-javadoc.jar!/" />
     </JAVADOC>
     <SOURCES>
-      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.10/druid-spring-boot-starter-1.1.10-sources.jar!/" />
+      <root url="jar://$MAVEN_REPOSITORY$/com/alibaba/druid-spring-boot-starter/1.1.20/druid-spring-boot-starter-1.1.20-sources.jar!/" />
     </SOURCES>
   </library>
 </component>

+ 0 - 1
PAS/src/main/java/cn/cslg/pas/controller/ReportController.java

@@ -27,7 +27,6 @@ import java.util.List;
 @RequestMapping(Constants.API_VERSION_V2 + "/report")
 @RequiredArgsConstructor(onConstructor_ = {@Lazy})
 public class ReportController {
-
     private final ReportService reportService;
     private final CacheUtils cacheUtils;
     private final LoginUtils loginUtils;

+ 0 - 1
PAS/src/main/java/cn/cslg/pas/service/PatentApplicantService.java

@@ -90,7 +90,6 @@ public class PatentApplicantService extends ServiceImpl<PatentApplicantMapper, P
         });
         return dataList;
     }
-
     public IPage<PatentApplicant> getPageList(PatentApplicantVO params) {
         IPage<PatentApplicant> pageList = baseMapper.getPageList(new Page<>(params.getCurrent(), params.getSize()), params);
         List<SystemDict> systemDictList = systemDictService.getSystemDictListByType(Collections.singletonList("COUNTRIES"));

+ 12 - 4
PAS/src/main/java/cn/cslg/pas/service/PatentRightService.java

@@ -613,15 +613,23 @@ public class PatentRightService extends ServiceImpl<PatentRightMapper, PatentRig
                 //英文专利的权要拆分 ↓
             } else {
                 content = content.substring(content.indexOf("1."));
-                contentOut = contentOut.substring(contentOut.indexOf("1."));
+                 if(contentOut.indexOf("1.")>-1){
+                     contentOut = contentOut.substring(contentOut.indexOf("1."));
+                 }
+               else{
+                     contentOut = contentOut.substring(contentOut.indexOf("1、"));
+                 }
                 String regex;
                 if (content.contains("1.")) {
                     regex = "\\.[0-9]+\\. ";
-                } else if (content.contains("1、")) {
+                }
+                else if (content.contains("1、")) {
                     regex = "\\.[0-9]+\\. ";
-                } else if (content.contains("[001]")) {
+                }
+                else if (content.contains("[001]")) {
                     regex = "\\[[0-9]+]";
-                } else {
+                }
+                else {
                     regex = "";
                 }
                 Matcher matcher = Pattern.compile(regex).matcher(content);

+ 4 - 3
PAS/src/main/java/cn/cslg/pas/service/ProjectImportService.java

@@ -94,12 +94,13 @@ public class ProjectImportService extends ServiceImpl<ProjectImportMapper, Proje
         if (patentDTO.getPatentNo() != null) {
             patentDTO.setPatentNo(patentDTO.getPatentNo().replace(" ", ""));
             if (!patentDTO.getPatentNo().equals("")) {
+                String[] strs = patentDTO.getPatentNo().split("\\|");
+                orgPatentNos = new ArrayList<>(Arrays.asList(strs));
                 QueryPatentVO params =new QueryPatentVO();
-                params.setPatentNo("patentDTO.getPatentNo()");
+                params.setPatentNo(patentDTO.getPatentNo());
+                params.setPatentNos(orgPatentNos);
                 List<Patent> patents =patentMapper.getConPantents(params);
                 List<String> patentNos =patents.stream().map(Patent::getPatentNo).collect(Collectors.toList());
-                String[] strs = patentDTO.getPatentNo().split("\\|");
-                orgPatentNos = new ArrayList<>(Arrays.asList(strs));
                 orgPatentNos.removeAll(patentNos);
                 if (patents.size() > 0) {
                     List<ProjectPatentLink> projectPatentLinkList =new ArrayList<>();

+ 3 - 0
PAS/src/main/resources/mapper/AssoProductPatentMapper.xml

@@ -28,6 +28,9 @@
         <if test="params.productId !=null">
             left join asso_product_patent i on i.patent_no=a.patentno
         </if>
+        <if test="params.structureId !=null and params.structureId !=''">
+            left join asso_structure_patent t on t.patent_no =a.patentno
+        </if>
 
         <if test="params.applicationName !=null ">
             left join os_applicant_attr b on a.id=b.pid and b.type =1

+ 0 - 2
PAS/src/main/resources/mapper/PatentMapper.xml

@@ -1805,8 +1805,6 @@
                         </foreach>
                         )
                     </if>
-
-
                     <if test="params.orderItem!=null and params.orderItem!='SysOrder'">
                         order by #{params.orderItem}
                         <if test="params.orderType!=null">

+ 0 - 744
logs/pas/pas-debug.2023-03-14.0.log

@@ -1,744 +0,0 @@
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.573 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.595 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 0(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.615 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.615 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.617 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.618 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.618 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.619 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.619 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.620 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.621 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.622 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.622 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.622 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.623 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.623 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.624 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.624 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.625 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.625 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.625 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.626 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.626 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.627 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.627 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.628 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.629 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.630 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.630 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.630 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.631 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.631 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.633 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.633 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.634 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.634 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.634 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.635 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.636 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.636 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.636 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.637 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.637 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.637 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.638 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.639 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.639 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.640 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.641 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.642 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.643 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.643 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.644 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.644 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.645 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.645 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.645 DEBUG 6764 [http-nio-8877-exec-8] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.843 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.843 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 0(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.844 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.845 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.845 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.846 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.846 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.846 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.847 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.847 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.847 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.848 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.848 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.849 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.849 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.850 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.850 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.850 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.851 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.851 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.851 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.852 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.852 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.853 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.853 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.854 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.856 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.857 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.857 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.858 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.860 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.860 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.862 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.862 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.863 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.865 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.865 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.866 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.868 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.868 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.869 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.869 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.869 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.869 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.870 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.870 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.870 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.871 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.871 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.871 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.872 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.872 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.873 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.873 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.873 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.874 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.874 DEBUG 6764 [http-nio-8877-exec-9] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.588 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.608 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 0(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.628 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.629 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.629 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.630 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.630 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.630 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.631 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.632 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.633 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.634 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.634 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.635 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.636 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.636 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.636 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.637 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.637 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.638 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.638 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.638 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.638 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.639 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.639 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.639 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.640 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.640 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.641 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.641 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.641 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.642 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.643 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.643 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.643 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.644 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.644 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.644 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.645 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.645 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.645 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.645 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.646 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.646 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.646 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.647 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.648 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.650 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.651 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.651 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.652 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.653 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.653 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.653 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.654 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where parent_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.654 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId ==> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.655 DEBUG 10668 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.893 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.913 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId ==> Parameters: 22(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.933 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.933 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.934 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.934 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.935 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.935 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.936 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.936 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.937 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.938 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.938 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.939 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.939 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.939 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.940 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.940 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.940 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.941 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.941 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.941 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.942 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.943 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.943 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.943 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.944 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.944 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.944 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.945 DEBUG 9720 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId <==      Total: 9
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.739 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId ==>  Preparing: select id s_id, parent_id, structure_name, path, remark, product_id from structure where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.759 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId ==> Parameters: 22(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.779 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.780 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 1(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.781 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.781 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.782 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 2(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.782 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.783 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.783 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 3(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.783 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.784 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.784 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 4(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.785 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.785 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.786 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 5(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.786 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.787 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.787 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 6(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.788 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.788 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.789 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 7(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.790 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.790 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.790 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.791 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.791 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====>  Preparing: select id, structure_id, name, suffix, url from asso_structure_picture where structure_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.791 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.792 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByParentId2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.792 DEBUG 3888 [http-nio-8877-exec-4] cn.cslg.pas.mapper.StructureMapper.selectByProductId <==      Total: 9
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.821 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.841 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.871 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.881 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.881 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.881 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.139 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.139 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.146 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.148 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.148 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.150 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.345 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query_COUNT ==>  Preparing: SELECT count(0) FROM product_category
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.345 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query_COUNT ==> Parameters: 
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.347 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query_COUNT <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.349 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query ==>  Preparing: select id pc_id, product_category_name, remark, license_rate, create_person_name from product_category order by pc_id LIMIT ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.349 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query ==> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.352 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query2 ====>  Preparing: select id, product_category_id, name, suffix, url from asso_product_category_picture where product_category_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.352 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query2 ====> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.355 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.356 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductCategoryMapper.query <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.630 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.630 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.630 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.640 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.650 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.650 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.650 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.650 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.650 DEBUG 10648 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.730 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.730 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.740 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.750 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.820 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.820 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.830 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.847 DEBUG 10648 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.907 DEBUG 10648 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.917 DEBUG 10648 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:34.025 DEBUG 10648 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:34.026 DEBUG 10648 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:34.030 DEBUG 10648 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.250 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query_COUNT ==>  Preparing: SELECT count(0) FROM product WHERE product_category_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.250 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query_COUNT ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.250 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query_COUNT <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.250 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id LIMIT ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.260 DEBUG 10648 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.491 DEBUG 10648 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.551 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.551 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.551 DEBUG 10648 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.991 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.991 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.993 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.995 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.995 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.997 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.008 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.009 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.012 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.013 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.013 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.015 DEBUG 10648 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.067 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.067 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:01.069 DEBUG 10648 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.746 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.766 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.786 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.797 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.797 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.800 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.981 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.982 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.988 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.990 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.991 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.993 DEBUG 1428 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.887 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.887 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.892 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.893 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.894 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.894 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.895 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.897 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.897 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.898 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.900 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.900 DEBUG 1428 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.874 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.875 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.876 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.878 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.879 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.880 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.890 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.890 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.895 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.896 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.897 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.898 DEBUG 1428 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.097 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.098 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.101 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.101 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.102 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.102 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.102 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.104 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.105 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.106 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.107 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.108 DEBUG 1428 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.560 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.561 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.563 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.564 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.565 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.567 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.576 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.577 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.581 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.582 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.582 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.584 DEBUG 1428 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.458 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.458 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.461 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.461 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.463 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.463 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.463 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.465 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.465 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.465 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.467 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.467 DEBUG 1428 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.274 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.275 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.276 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.277 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.278 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.280 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.290 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.290 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.293 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.295 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.295 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.297 DEBUG 1428 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.367 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.367 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.369 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.369 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.370 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.371 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.374 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.374 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.375 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.375 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.377 DEBUG 1428 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.377 DEBUG 1428 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.485 DEBUG 1428 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.485 DEBUG 1428 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.487 DEBUG 1428 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.813 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.833 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.854 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.865 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.866 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.868 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.039 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.040 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.046 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.048 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.049 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:47.051 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.110 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.111 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.113 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.114 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.115 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.117 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.130 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.130 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.134 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.136 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.136 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.139 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.168 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.169 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.171 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.173 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.174 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.175 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.185 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.185 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.189 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.190 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.190 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.192 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.801 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.801 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.804 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.806 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.807 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.809 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.819 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.819 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.823 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.826 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.827 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.830 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.883 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.883 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.885 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.886 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.887 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.889 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.899 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.899 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.902 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.903 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.903 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.905 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.660 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.661 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.662 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.663 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.664 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.665 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.674 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.674 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.677 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.678 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.679 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.680 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.730 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.730 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.732 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.733 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.733 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.735 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.744 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.745 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.748 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.749 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.749 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.752 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.258 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.259 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.263 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.263 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.265 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.265 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.265 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.268 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.269 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.269 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.270 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.271 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:51.999 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.000 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.002 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.003 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.004 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.005 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.014 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.015 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.018 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.019 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.019 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.021 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.096 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.096 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.098 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.100 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.100 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.102 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.112 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.112 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.115 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.116 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.116 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.118 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.958 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.958 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.960 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.960 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.962 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.962 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.962 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.964 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.964 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.964 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.967 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.967 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.920 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.920 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.922 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.923 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.924 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.925 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.934 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.935 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.937 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.938 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.938 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.940 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.895 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.896 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.898 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.898 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.900 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.900 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.900 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.902 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.902 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.902 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.904 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.904 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.693 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.693 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.695 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.696 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.697 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.698 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.709 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.709 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.711 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.713 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.713 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.715 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.849 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query ==>  Preparing: select id p_id, product_name, market_time, company_name, tenant_id, product_explain, product_category_id, license_rate, create_person_name from product WHERE product_category_id = ? order by p_id
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.850 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.852 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.852 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 8(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.854 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.855 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.855 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.857 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.857 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====>  Preparing: select id, product_id, name, suffix, url from asso_product_picture where product_id = ?
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.858 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 ====> Parameters: 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.859 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query2 <====      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.859 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProductMapper.query <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.105 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.105 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.107 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.108 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.109 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.110 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.118 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.119 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.121 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.122 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.123 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.124 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.189 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.189 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.191 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.192 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.192 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.195 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.196 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.196 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.196 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.196 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.198 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.198 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.284 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.285 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.286 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.568 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.569 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.571 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.572 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.572 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:01.574 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.573 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.574 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.576 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.578 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.578 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:04.582 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.350 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.351 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.353 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.354 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.354 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:07.357 DEBUG 11144 [http-nio-8877-exec-2] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.415 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.416 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.417 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.419 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.419 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:10.420 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.672 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ? AND company_name = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.672 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer), 深圳威世博知识产权代理事务所(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.675 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.675 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.676 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:11.677 DEBUG 11144 [http-nio-8877-exec-4] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.968 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.969 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.970 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.971 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.972 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.973 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.985 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.986 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.987 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.988 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.989 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.991 DEBUG 11144 [http-nio-8877-exec-5] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.043 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.043 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.045 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.045 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.045 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.046 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.046 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.048 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.048 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.049 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.049 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.049 DEBUG 11144 [http-nio-8877-exec-8] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.139 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.139 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:00.141 DEBUG 11144 [http-nio-8877-exec-7] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.732 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.733 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.734 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.735 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.735 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:01.736 DEBUG 11144 [http-nio-8877-exec-9] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.755 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.756 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 11(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.758 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 3
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.759 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?,?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.759 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 8(Integer), 9(Integer), 10(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:02.761 DEBUG 11144 [http-nio-8877-exec-10] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 4
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.869 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==>  Preparing: SELECT id,uid AS userId,tenantId,tid AS projectId,addtime AS createTime,remark,type FROM os_distribution_doing WHERE (uid = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.869 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.871 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectUserMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.871 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.872 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 197(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.873 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 1
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.881 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==>  Preparing: SELECT id,label,value,type FROM os_system_dict WHERE (type IN (?,?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.881 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList ==> Parameters: ENTERPRISE_APPLICATION_SCENARIO(String), INVESTIGATION_TYPE(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.883 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.SystemDictMapper.selectList <==      Total: 46
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.884 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==>  Preparing: SELECT id,name,creat_id AS createBy,technical_theme,innerfile,`update`,status,contract_no,`case` AS caseDate,update_time,sort,clientid,scenarioid AS scenario,typeid AS type,remark,department_id,personnel_id,tenantId,create_time FROM os_thematic WHERE (creat_id = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.884 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList ==> Parameters: 328(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.885 DEBUG 11144 [http-nio-8877-exec-1] cn.cslg.pas.mapper.ProjectMapper.selectList <==      Total: 0
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.945 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==>  Preparing: SELECT id,product_id,sale_time,sale_area,sale_count,sale_money,custom_license_rate,create_person_id,create_person_name,create_time,modified_time FROM product_market_data WHERE (product_id IN (?))
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.945 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList ==> Parameters: 9(Integer)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.947 DEBUG 11144 [http-nio-8877-exec-3] cn.cslg.pas.mapper.ProductMarketDataMapper.selectList <==      Total: 2
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:21:53.194 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==>  Preparing: SELECT id,product_name,market_time,company_name,tenant_id,product_explain,product_category_id,license_rate,create_person_id,create_person_name,create_time,modified_time FROM product WHERE (product_category_id = ? AND company_name = ?)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:21:53.194 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList ==> Parameters: 0(Integer), string(String)
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:21:53.196 DEBUG 11144 [http-nio-8877-exec-6] cn.cslg.pas.mapper.ProductMapper.selectList <==      Total: 0

ファイルの差分が大きいため隠しています
+ 72034 - 58949
logs/pas/pas-debug.log


ファイルの差分が大きいため隠しています
+ 1796 - 34
logs/pas/pas-error.log


+ 0 - 356
logs/pas/pas-info.2023-03-14.0.log

@@ -1,356 +0,0 @@
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:45.051 INFO 6764 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_312 on 陈宇的杂牌电脑呀 with PID 6764 (E:\WorkSpace\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by Administrator in E:\WorkSpace\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:45.052 INFO 6764 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:45.774 INFO 6764 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:45.777 INFO 6764 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:45.807 INFO 6764 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.468 INFO 6764 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.476 INFO 6764 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.477 INFO 6764 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.477 INFO 6764 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.561 INFO 6764 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.561 INFO 6764 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1478 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.751 INFO 6764 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:46.953 INFO 6764 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:51.712 INFO 6764 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:51.728 INFO 6764 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:24:51.736 INFO 6764 [main] cn.cslg.pas.Application Started Application in 7.147 seconds (JVM running for 8.265)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:25:57.997 INFO 6764 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:25:57.997 INFO 6764 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:25:57.998 INFO 6764 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:25:59.097 INFO 6764 [http-nio-8877-exec-7] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 878 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.460 INFO 6764 [http-nio-8877-exec-8] cn.cslg.pas.controller.StructureController 开始处理【分页查询架构】的请求,请求参数为:StructureQueryPageDTO(productId=0, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:13.463 INFO 6764 [http-nio-8877-exec-8] cn.cslg.pas.service.impl.StructureServiceImpl 开始处理【分页查询架构】的业务,参数为:StructureQueryPageDTO(productId=0, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.842 INFO 6764 [http-nio-8877-exec-9] cn.cslg.pas.controller.StructureController 开始处理【分页查询架构】的请求,请求参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:26:53.843 INFO 6764 [http-nio-8877-exec-9] cn.cslg.pas.service.impl.StructureServiceImpl 开始处理【分页查询架构】的业务,参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:29:14.185 INFO 6764 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:19.160 INFO 10668 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_312 on 陈宇的杂牌电脑呀 with PID 10668 (E:\WorkSpace\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by Administrator in E:\WorkSpace\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:19.162 INFO 10668 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:19.890 INFO 10668 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:19.892 INFO 10668 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:19.920 INFO 10668 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.540 INFO 10668 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.547 INFO 10668 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.547 INFO 10668 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.547 INFO 10668 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.621 INFO 10668 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.622 INFO 10668 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1414 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:20.804 INFO 10668 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:21.010 INFO 10668 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:25.424 INFO 10668 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:25.439 INFO 10668 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:25.447 INFO 10668 [main] cn.cslg.pas.Application Started Application in 6.695 seconds (JVM running for 7.358)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:29.143 INFO 10668 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:29.143 INFO 10668 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:29.144 INFO 10668 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:30.214 INFO 10668 [http-nio-8877-exec-3] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 829 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.474 INFO 10668 [http-nio-8877-exec-4] cn.cslg.pas.controller.StructureController 开始处理【分页查询架构】的请求,请求参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:30:41.476 INFO 10668 [http-nio-8877-exec-4] cn.cslg.pas.service.impl.StructureServiceImpl 开始处理【分页查询架构】的业务,参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:31:37.599 INFO 10668 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:11.894 INFO 9720 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_312 on 陈宇的杂牌电脑呀 with PID 9720 (E:\WorkSpace\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by Administrator in E:\WorkSpace\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:11.896 INFO 9720 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:12.653 INFO 9720 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:12.655 INFO 9720 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:12.684 INFO 9720 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.325 INFO 9720 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.333 INFO 9720 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.333 INFO 9720 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.333 INFO 9720 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.412 INFO 9720 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.413 INFO 9720 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1471 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.603 INFO 9720 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:13.822 INFO 9720 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:18.368 INFO 9720 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:18.383 INFO 9720 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:18.392 INFO 9720 [main] cn.cslg.pas.Application Started Application in 6.925 seconds (JVM running for 7.574)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:27.355 INFO 9720 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:27.356 INFO 9720 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:27.357 INFO 9720 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:28.381 INFO 9720 [http-nio-8877-exec-3] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 809 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.784 INFO 9720 [http-nio-8877-exec-4] cn.cslg.pas.controller.StructureController 开始处理【分页查询架构】的请求,请求参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:50:45.786 INFO 9720 [http-nio-8877-exec-4] cn.cslg.pas.service.impl.StructureServiceImpl 开始处理【分页查询架构】的业务2,参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:12.387 INFO 9720 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:16.132 INFO 3888 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_312 on 陈宇的杂牌电脑呀 with PID 3888 (E:\WorkSpace\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by Administrator in E:\WorkSpace\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:16.134 INFO 3888 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:16.875 INFO 3888 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:16.877 INFO 3888 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:16.905 INFO 3888 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.556 INFO 3888 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.563 INFO 3888 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.563 INFO 3888 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.564 INFO 3888 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.642 INFO 3888 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.643 INFO 3888 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1467 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:17.830 INFO 3888 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:18.045 INFO 3888 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:22.516 INFO 3888 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:22.530 INFO 3888 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:22.538 INFO 3888 [main] cn.cslg.pas.Application Started Application in 6.812 seconds (JVM running for 7.51)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:24.928 INFO 3888 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:24.928 INFO 3888 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:24.929 INFO 3888 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:26.036 INFO 3888 [http-nio-8877-exec-3] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 861 ms
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.608 INFO 3888 [http-nio-8877-exec-4] cn.cslg.pas.controller.StructureController 开始处理【分页查询架构】的请求,请求参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-12 23:51:34.610 INFO 3888 [http-nio-8877-exec-4] cn.cslg.pas.service.impl.StructureServiceImpl 开始处理【分页查询架构】的业务2,参数为:StructureQueryPageDTO(productId=22, structureId=0, structureName=string)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:42.421 INFO 22908 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 22908 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:42.421 INFO 22908 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:43.371 INFO 22908 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:43.371 INFO 22908 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:43.441 INFO 22908 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 46 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.210 INFO 22908 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.220 INFO 22908 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.220 INFO 22908 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.220 INFO 22908 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.310 INFO 22908 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.310 INFO 22908 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1839 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.520 INFO 22908 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:44.740 INFO 22908 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:50.052 INFO 22908 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:50.072 INFO 22908 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:50.082 INFO 22908 [main] cn.cslg.pas.Application Started Application in 8.139 seconds (JVM running for 9.89)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:11:50.650 INFO 22908 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:37.536 INFO 13252 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 13252 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:37.546 INFO 13252 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:38.376 INFO 13252 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:38.376 INFO 13252 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:38.446 INFO 13252 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 51 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.226 INFO 13252 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.236 INFO 13252 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.236 INFO 13252 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.236 INFO 13252 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.316 INFO 13252 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.316 INFO 13252 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1730 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.516 INFO 13252 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:39.736 INFO 13252 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:44.660 INFO 13252 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:44.680 INFO 13252 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 11:20:44.690 INFO 13252 [main] cn.cslg.pas.Application Started Application in 7.639 seconds (JVM running for 8.479)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:35.463 INFO 13252 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:41.530 INFO 8076 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 8076 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:41.533 INFO 8076 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:42.442 INFO 8076 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:42.444 INFO 8076 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:42.507 INFO 8076 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 51 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.194 INFO 8076 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.202 INFO 8076 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.202 INFO 8076 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.203 INFO 8076 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.286 INFO 8076 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.286 INFO 8076 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1703 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.493 INFO 8076 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:43.703 INFO 8076 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:49.008 INFO 8076 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:49.026 INFO 8076 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:11:49.034 INFO 8076 [main] cn.cslg.pas.Application Started Application in 7.993 seconds (JVM running for 8.783)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:44.386 INFO 8076 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:52.901 INFO 17596 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 17596 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:52.904 INFO 17596 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:53.781 INFO 17596 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:53.783 INFO 17596 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:53.850 INFO 17596 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 53 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.534 INFO 17596 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.542 INFO 17596 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.543 INFO 17596 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.544 INFO 17596 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.626 INFO 17596 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.626 INFO 17596 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1672 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:54.827 INFO 17596 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:14:55.037 INFO 17596 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:15:00.158 INFO 17596 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:15:00.174 INFO 17596 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:15:00.184 INFO 17596 [main] cn.cslg.pas.Application Started Application in 7.778 seconds (JVM running for 8.514)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:36:51.472 INFO 17596 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:36:51.472 INFO 17596 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:36:51.474 INFO 17596 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 2 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:36:52.740 INFO 17596 [http-nio-8877-exec-4] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 953 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:31.032 INFO 17596 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:37.808 INFO 8508 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 8508 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:37.810 INFO 8508 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:38.696 INFO 8508 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:38.698 INFO 8508 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:38.762 INFO 8508 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 51 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.450 INFO 8508 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.457 INFO 8508 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.458 INFO 8508 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.458 INFO 8508 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.540 INFO 8508 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.540 INFO 8508 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1682 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.730 INFO 8508 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:39.944 INFO 8508 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:45.103 INFO 8508 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:45.118 INFO 8508 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:44:45.127 INFO 8508 [main] cn.cslg.pas.Application Started Application in 7.822 seconds (JVM running for 8.717)
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:47:46.958 INFO 8508 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:47:46.959 INFO 8508 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:47:46.960 INFO 8508 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 14:47:48.038 INFO 8508 [http-nio-8877-exec-2] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 948 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:29.376 INFO 8508 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:34.286 INFO 10648 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 10648 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:34.286 INFO 10648 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.166 INFO 10648 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.166 INFO 10648 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.226 INFO 10648 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 51 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.896 INFO 10648 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.906 INFO 10648 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.906 INFO 10648 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.906 INFO 10648 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.986 INFO 10648 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:35.986 INFO 10648 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1649 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:36.176 INFO 10648 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:36.386 INFO 10648 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:41.130 INFO 10648 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:41.150 INFO 10648 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 15:29:41.161 INFO 10648 [main] cn.cslg.pas.Application Started Application in 7.361 seconds (JVM running for 8.346)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.190 INFO 10648 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.190 INFO 10648 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.190 INFO 10648 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 0 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.230 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.681 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.681 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:16.872 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.309 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.controller.ProductCategoryController 开始处理【分页查询产品类别】的请求,请求参数为:ProductCategoryQueryPageDTO(productCategoryName=null, productName=null, createPersonName=null)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:17.311 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.service.impl.ProductCategoryServiceImpl 开始处理【分页查询产品类别】的业务,参数为:ProductCategoryQueryPageDTO(productCategoryName=null, productName=null, createPersonName=null)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 INFO 10648 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 INFO 10648 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 INFO 10648 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:25.620 INFO 10648 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.817 INFO 10648 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.817 INFO 10648 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 INFO 10648 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:32:33.827 INFO 10648 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.240 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:49.240 INFO 10648 [http-nio-8877-exec-1] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.461 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:33:54.471 INFO 10648 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.986 INFO 10648 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.990 INFO 10648 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.990 INFO 10648 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:34:00.994 INFO 10648 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:38:58.903 INFO 10648 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:04.174 INFO 1428 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 1428 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:04.176 INFO 1428 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.094 INFO 1428 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.097 INFO 1428 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.164 INFO 1428 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 52 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.835 INFO 1428 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.842 INFO 1428 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.843 INFO 1428 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.843 INFO 1428 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.924 INFO 1428 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:05.924 INFO 1428 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1693 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:06.122 INFO 1428 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:06.326 INFO 1428 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:11.290 INFO 1428 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:11.305 INFO 1428 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:39:11.314 INFO 1428 [main] cn.cslg.pas.Application Started Application in 7.617 seconds (JVM running for 8.327)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.150 INFO 1428 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.150 INFO 1428 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.151 INFO 1428 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.179 INFO 1428 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.601 INFO 1428 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.601 INFO 1428 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:37.788 INFO 1428 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.882 INFO 1428 [http-nio-8877-exec-2] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:41:38.885 INFO 1428 [http-nio-8877-exec-2] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.865 INFO 1428 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.868 INFO 1428 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.869 INFO 1428 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:45.877 INFO 1428 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.097 INFO 1428 [http-nio-8877-exec-4] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:43:48.097 INFO 1428 [http-nio-8877-exec-4] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.553 INFO 1428 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.556 INFO 1428 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.556 INFO 1428 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:55.563 INFO 1428 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.457 INFO 1428 [http-nio-8877-exec-6] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:45:57.458 INFO 1428 [http-nio-8877-exec-6] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.267 INFO 1428 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.270 INFO 1428 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.270 INFO 1428 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:48:20.276 INFO 1428 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:44.447 INFO 1428 [SpringApplicationShutdownHook] com.alibaba.druid.pool.DruidDataSource {dataSource-1} closed
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:50.147 INFO 11144 [main] cn.cslg.pas.Application Starting Application using Java 1.8.0_342 on DESKTOP-69B64D5 with PID 11144 (D:\Wispro-CodeWarehouse-BackEnd\PAS\target\classes started by admin in D:\Wispro-CodeWarehouse-BackEnd)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:50.157 INFO 11144 [main] cn.cslg.pas.Application The following profiles are active: dev
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.019 INFO 11144 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Multiple Spring Data modules found, entering strict repository configuration mode!
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.021 INFO 11144 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Bootstrapping Spring Data Redis repositories in DEFAULT mode.
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.083 INFO 11144 [main] org.springframework.data.repository.config.RepositoryConfigurationDelegate Finished Spring Data repository scanning in 49 ms. Found 0 Redis repository interfaces.
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.747 INFO 11144 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat initialized with port(s): 8877 (http)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.754 INFO 11144 [main] org.apache.coyote.http11.Http11NioProtocol Initializing ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.755 INFO 11144 [main] org.apache.catalina.core.StandardService Starting service [Tomcat]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.755 INFO 11144 [main] org.apache.catalina.core.StandardEngine Starting Servlet engine: [Apache Tomcat/9.0.56]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.835 INFO 11144 [main] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring embedded WebApplicationContext
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:51.835 INFO 11144 [main] org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext Root WebApplicationContext: initialization completed in 1638 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:52.036 INFO 11144 [main] com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure Init DruidDataSource
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:52.240 INFO 11144 [main] com.alibaba.druid.pool.DruidDataSource {dataSource-1} inited
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:57.046 INFO 11144 [main] org.apache.coyote.http11.Http11NioProtocol Starting ProtocolHandler ["http-nio-8877"]
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:57.061 INFO 11144 [main] org.springframework.boot.web.embedded.tomcat.TomcatWebServer Tomcat started on port(s): 8877 (http) with context path ''
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:49:57.070 INFO 11144 [main] cn.cslg.pas.Application Started Application in 7.372 seconds (JVM running for 8.111)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.221 INFO 11144 [http-nio-8877-exec-1] org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/] Initializing Spring DispatcherServlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.222 INFO 11144 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Initializing Servlet 'dispatcherServlet'
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.223 INFO 11144 [http-nio-8877-exec-1] org.springframework.web.servlet.DispatcherServlet Completed initialization in 1 ms
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.251 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.669 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.669 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:46.856 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.104 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.109 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.109 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:51:52.113 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.164 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.167 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.167 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:00.172 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.795 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.799 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.799 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:07.804 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.878 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.881 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.881 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:19.885 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.656 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.659 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.659 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:52:46.662 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.726 INFO 11144 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.729 INFO 11144 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.729 INFO 11144 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:16.732 INFO 11144 [http-nio-8877-exec-7] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.252 INFO 11144 [http-nio-8877-exec-8] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:18.256 INFO 11144 [http-nio-8877-exec-8] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:51.995 INFO 11144 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:51.998 INFO 11144 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:51.998 INFO 11144 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:53:52.002 INFO 11144 [http-nio-8877-exec-9] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.087 INFO 11144 [http-nio-8877-exec-10] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.090 INFO 11144 [http-nio-8877-exec-10] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.091 INFO 11144 [http-nio-8877-exec-10] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.098 INFO 11144 [http-nio-8877-exec-10] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.955 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:55:23.956 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.910 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.916 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.916 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:43.922 INFO 11144 [http-nio-8877-exec-2] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.894 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:56:44.895 INFO 11144 [http-nio-8877-exec-3] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.689 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.692 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.692 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:20.695 INFO 11144 [http-nio-8877-exec-4] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.848 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.controller.ProductController 开始处理【查询产品】的请求,请求参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:57:22.849 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.impl.ProductServiceImpl 开始处理【查询产品】的业务,参数为:ProductQueryPageDTO(productName=null, patentNo=null, companyName=null, productCategoryId=11)
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.098 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.101 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.101 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:58:52.107 INFO 11144 [http-nio-8877-exec-6] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.965 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.968 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.968 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 16:59:59.971 INFO 11144 [http-nio-8877-exec-5] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.865 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始获得权限
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.868 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 获得用户信息朱豪328
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.868 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 开始查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:00:25.871 INFO 11144 [http-nio-8877-exec-1] cn.cslg.pas.service.OAuth2Service 查询专题库信息
-[pas:0.0.0.0:8877] [,] 2023-03-14 17:21:33.563 INFO 11144 [http-nio-8877-exec-5] org.springdoc.api.AbstractOpenApiResource Init duration for springdoc-openapi is: 3492 ms

ファイルの差分が大きいため隠しています
+ 16 - 1775
logs/pas/pas-info.log