From 19e2e8f04e4c8eaff08a3b5e3f16606aee4487db Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期四, 14 三月 2024 17:27:10 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

---
 Source/ProjectWeb/src/router/page/index.js                |   12 
 Bin/properties/ServerLog4j2.xml                           |   25 
 Source/ProjectWeb/src/components/basic-container/main.vue |    6 
 Bin/properties/ClientLog4j2.xml                           |   25 
 Source/ProjectWeb/src/views/base/UIContentVIewer.vue      |  160 ++
 Source/ProjectWeb/src/page/index/index.vue                |    7 
 Source/ProjectWeb/src/views/base/uiDefineVO.js            | 4563 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 4,795 insertions(+), 3 deletions(-)

diff --git a/Bin/properties/ClientLog4j2.xml b/Bin/properties/ClientLog4j2.xml
new file mode 100644
index 0000000..5e38dcb
--- /dev/null
+++ b/Bin/properties/ClientLog4j2.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration status="WARN">
+    <Appenders>
+        <Console name="Console" target="SYSTEM_OUT">
+            <PatternLayout pattern="[%-5p] %d{YYYY-MM-dd HH:mm:ss} [%t] %C{1}:%L - %msg%n" />
+        </Console>
+ 
+        <RollingFile name="RollingFile" filename="./logs/client_log.log" filepattern="${logPath}/client_%d{YYYYMMddHHmmss}.log">
+            <PatternLayout pattern="[%-5p] %d{YYYY-MM-dd HH:mm:ss} [%t] %C{1}:%L - %msg%n" />
+            <Policies>
+                <SizeBasedTriggeringPolicy size="10 MB" />
+            </Policies>
+            <DefaultRolloverStrategy max="20" />
+        </RollingFile>
+ 
+    </Appenders>
+    <Loggers>
+        <Logger name="ClientLog" level="DEBUG" additivity="true">
+            <AppenderRef ref="RollingFile" />
+        </Logger>
+        <Root level="DEBUG">
+            <AppenderRef ref="Console" />
+        </Root>
+    </Loggers>
+</Configuration>
diff --git a/Bin/properties/ServerLog4j2.xml b/Bin/properties/ServerLog4j2.xml
new file mode 100644
index 0000000..c288b14
--- /dev/null
+++ b/Bin/properties/ServerLog4j2.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration status="WARN">
+    <Appenders>
+        <Console name="Console" target="SYSTEM_OUT">
+            <PatternLayout pattern="[%-5p] %d{YYYY-MM-dd HH:mm:ss} [%t] %C{1}:%L - %msg%n" />
+        </Console>
+ 
+        <RollingFile name="RollingFile" filename="./logs/server_log.log" filepattern="${logPath}/server_%d{YYYYMMddHHmmss}.log">
+            <PatternLayout pattern="[%-5p] %d{YYYY-MM-dd HH:mm:ss} [%t] %C{1}:%L - %msg%n" />
+            <Policies>
+                <SizeBasedTriggeringPolicy size="10 MB" />
+            </Policies>
+            <DefaultRolloverStrategy max="20" />
+        </RollingFile>
+ 
+    </Appenders>
+    <Loggers>
+        <Logger name="ServerLog" level="INFO" additivity="true">
+            <AppenderRef ref="RollingFile" />
+        </Logger>
+        <Root level="INFO">
+            <AppenderRef ref="Console" />
+        </Root>
+    </Loggers>
+</Configuration>
diff --git a/Source/ProjectWeb/src/components/basic-container/main.vue b/Source/ProjectWeb/src/components/basic-container/main.vue
index cbe7b61..934935c 100644
--- a/Source/ProjectWeb/src/components/basic-container/main.vue
+++ b/Source/ProjectWeb/src/components/basic-container/main.vue
@@ -2,7 +2,7 @@
   <div class="basic-container"
        :style="styleName"
        :class="{'basic-container--block':block}">
-    <el-card class="basic-container__card">
+    <el-card class="basic-container__card" :style="cradStyle">
       <slot></slot>
     </el-card>
   </div>
@@ -22,6 +22,9 @@
     block: {
       type: Boolean,
       default: false
+    },
+    cradStyle:{
+      type: String
     }
   },
   computed: {
@@ -39,6 +42,7 @@
 .basic-container {
   padding: 10px 6px;
   box-sizing: border-box;
+  height: 100%;
   &--block {
     height: 100%;
     .basic-container__card {
diff --git a/Source/ProjectWeb/src/page/index/index.vue b/Source/ProjectWeb/src/page/index/index.vue
index f802b58..1fdad95 100644
--- a/Source/ProjectWeb/src/page/index/index.vue
+++ b/Source/ProjectWeb/src/page/index/index.vue
@@ -9,7 +9,7 @@
         <!-- 宸︿晶瀵艰埅鏍� -->
         <sidebar v-loading="loading"/>
       </div>
-      <div class="avue-main">
+      <div class="avue-main" style="padding-bottom: 10px">
         <!-- 椤堕儴鏍囩鍗� -->
         <tags/>
         <transition name="fade-scale">
@@ -150,5 +150,8 @@
   };
 </script>
 <style lang="scss">
-
+ #avue-view .avue-view{
+   height: 100%;
+   padding: 0 6px !important;
+ }
 </style>
diff --git a/Source/ProjectWeb/src/router/page/index.js b/Source/ProjectWeb/src/router/page/index.js
index e79b57b..8dfc5b4 100644
--- a/Source/ProjectWeb/src/router/page/index.js
+++ b/Source/ProjectWeb/src/router/page/index.js
@@ -78,6 +78,18 @@
     redirect: '/404'
   },
   {
+    path: '/UIContentViewer',
+    name: 'UI涓婁笅鏂�',
+    component: Layout,
+    children: [
+      {
+        path: '',
+        component: () => import("@/views/base/UIContentVIewer"),
+        props: true
+      }
+    ]
+  },
+  {
     path: '/dynamic-table',
     name: '鍔ㄦ�佽〃鏍奸〉闈�',
     component: Layout,
diff --git a/Source/ProjectWeb/src/views/base/UIContentVIewer.vue b/Source/ProjectWeb/src/views/base/UIContentVIewer.vue
new file mode 100644
index 0000000..5d1e942
--- /dev/null
+++ b/Source/ProjectWeb/src/views/base/UIContentVIewer.vue
@@ -0,0 +1,160 @@
+<template>
+  <!--UI涓婁笅鏂囩殑灞曠ず鍣�-->
+  <div style="height:calc(100% - 4px) ">
+    <el-header v-if="uiDefineVO.northAreas && uiDefineVO.northAreas.length>0">
+      <basic-container>
+        <el-tabs v-if="uiDefineVO.northAreas.length>1" v-model="northActiveName" type="card" @tab-click="northHandleClick">
+          <el-tab-pane v-for="(areaItem,index) in uiDefineVO.northAreas" :key="areaItem.oid" :label="areaItem.name" :name="'northTab'+index">
+            <div class="componentVO" v-for="(componentVO,index) in areaItem.componentVOs" >
+              <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO"  :sourceData="sourceData"></dynamic-table>
+            </div>
+          </el-tab-pane>
+        </el-tabs>
+        <div v-else>
+          <div class="componentVO" v-for="(componentVO,index) in uiDefineVO.northAreas[0].componentVOs" >
+            <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="sourceData"></dynamic-table>
+          </div>
+        </div>
+      </basic-container>
+    </el-header>
+    <el-container :style="'height: '+(uiDefineVO.northAreas && uiDefineVO.northAreas.length>0?'calc(100% - 70px)':'100%')">
+      <el-aside v-if="uiDefineVO.westAreas && uiDefineVO.westAreas.length>0" width="320px" height="100%">
+        <basic-container cradStyle="height:100%">
+          <el-tabs v-if="uiDefineVO.westAreas.length>1" v-model="westActiveName" type="card" @tab-click="westHandleClick">
+            <el-tab-pane v-for="(areaItem,index) in uiDefineVO.westAreas" :key="areaItem.oid" :label="areaItem.name" :name="'westTab'+index">
+              <div class="componentVO" v-for="(componentVO,index) in areaItem.componentVOs" >
+                <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="sourceData"></dynamic-table>
+              </div>
+            </el-tab-pane>
+          </el-tabs>
+          <div v-else>
+            <div class="componentVO" v-for="(componentVO,index) in uiDefineVO.westAreas[0].componentVOs" >
+              <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="sourceData"></dynamic-table>
+            </div>
+          </div>
+        </basic-container>
+      </el-aside>
+      <el-container>
+        <el-main v-if="uiDefineVO.centerAreas && uiDefineVO.centerAreas.length>0" style="min-height: calc(100% - 310px)">
+          <basic-container cradStyle="height:100%">
+            <el-tabs v-if="uiDefineVO.centerAreas.length>1" v-model="centerActiveName" type="card" @tab-click="centerHandleClick">
+              <el-tab-pane v-for="(areaItem,index) in uiDefineVO.centerAreas" :key="areaItem.oid" :label="areaItem.name" :name="'centerTab'+index">
+                <div class="componentVO" v-for="(componentVO,index) in areaItem.componentVOs" >
+                  <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="checkedData.westAreas[0]"></dynamic-table>
+                </div>
+              </el-tab-pane>
+            </el-tabs>
+            <div v-else>
+              <div class="componentVO" v-for="(componentVO,index) in uiDefineVO.centerAreas[0].componentVOs" >
+                <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="checkedData.westAreas[0]"></dynamic-table>
+              </div>
+            </div>
+          </basic-container>
+        </el-main>
+        <el-footer v-if="uiDefineVO.southAreas && uiDefineVO.southAreas.length>0" height="500px" style="max-height: 300px">
+          <basic-container cradStyle="height:100%">
+            <el-tabs v-if="uiDefineVO.southAreas.length>1" v-model="southActiveName" type="card" @tab-click="southHandleClick">
+              <el-tab-pane v-for="(areaItem,index) in uiDefineVO.southAreas" :key="areaItem.oid" :label="areaItem.name" :name="'southTab'+index">
+                <div class="componentVO" v-for="(componentVO,index) in areaItem.componentVOs" >
+                  <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="checkedData.centerAreas[0]"></dynamic-table>
+                </div>
+              </el-tab-pane>
+            </el-tabs>
+            <div v-else>
+              <div class="componentVO" v-for="(componentVO,index) in uiDefineVO.southAreas[0].componentVOs" >
+                <dynamic-table v-if="componentVO.uiComponentType=='table'" :componentVO="componentVO" :sourceData="checkedData.centerAreas[0]"></dynamic-table>
+              </div>
+            </div>
+          </basic-container>
+        </el-footer>
+      </el-container>
+    </el-container>
+  </div>
+</template>
+
+<script>
+import dynamicTable from "@/components/dynamic-components/dynamic-table"
+import {uiDefineVOData} from "@/views/base/uiDefineVO"
+
+export default {
+  components:{dynamicTable},
+  props:{
+    inDialog: {
+      type: Boolean,
+      default: false
+    },
+    sourceData:{
+      //鑿滃崟婧愭暟鎹垨鑰呭脊绐楁椂鎸夐挳鎵�灞炲尯鍩熺殑涓婁竴鍖哄煙閫変腑鏁版嵁
+      type:Object,
+      default: {}
+    },
+    dataStore:{
+      //寮圭獥鏃舵寜閽墍灞炲尯鍩熼�変腑鏁版嵁
+      type:Array,
+      default: []
+    },
+    paramVOS:{
+      type:Object,
+      default: {}
+    }
+  },
+  data() {
+    return {
+      btmType:'',//涓氬姟绫诲瀷锛堟垨閾炬帴绫诲瀷锛�
+      content:'',//UI涓婁笅鏂囩殑鍚嶇О
+      checkedData:{
+        //鍚勫尯鍩熼�変腑鏁版嵁
+        westAreas:[],
+        centerAreas:[],
+        southAreas:[]
+      },
+      northActiveName: 'northTab0',
+      westActiveName: 'westTab0',
+      centerActiveName: 'centerTab0',
+      southActiveName: 'southTab0',
+      uiDefineVO: uiDefineVOData
+    }
+  },
+  watch: {
+
+  },
+  computed: {
+
+  },
+  methods: {
+    initUI(){
+
+    },
+    showContent(){
+
+    },
+    initContent(){
+
+    },
+    northHandleClick(tab, event) {
+      console.log(tab, event);
+    },
+    westHandleClick(tab, event) {
+      console.log(tab, event);
+    },
+    centerHandleClick(tab, event) {
+      console.log(tab, event);
+    },
+    southHandleClick(tab, event) {
+      console.log(tab, event);
+    },
+  }
+}
+</script>
+
+<style scoped>
+.el-container{
+  padding: 0 !important;
+}
+.el-header,.el-aside,.el-main,.el-footer{
+  padding: 0;
+}
+.el-header{
+  margin-bottom: 10px;
+}
+</style>
diff --git a/Source/ProjectWeb/src/views/base/uiDefineVO.js b/Source/ProjectWeb/src/views/base/uiDefineVO.js
new file mode 100644
index 0000000..c0fbbb9
--- /dev/null
+++ b/Source/ProjectWeb/src/views/base/uiDefineVO.js
@@ -0,0 +1,4563 @@
+export const uiDefineVOData= {
+  "btmTypeId": "processreview",
+  "btmname": null,
+  "centerAreas": [
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒锋柊",
+              "oid": "E20C314B-E741-FBE0-534A-D68E9C0D8E2C",
+              "orderNum": 6,
+              "paramVOS": {},
+              "pkComponent": "2D6D571B-BB6E-677D-9764-191BC5D5D3F1",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "璇勫浠诲姟鍒楄〃",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "璇勫浠诲姟鍒楄〃",
+          "nameOid": null,
+          "oid": "2D6D571B-BB6E-677D-9764-191BC5D5D3F1",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "2692E26B-8584-4561-8A03-D5921A82E490",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "audittask",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "type",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "缁撴灉",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "assigner",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鎸囨淳浜�",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "principal",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "璐熻矗浜�",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "planedstartdate",
+                  "fieldType": "date",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "寮�浼氭椂闂�",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "place",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "寮�浼氬湴鐐�",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "creator_name,(,creator,)",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "creator",
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓浜�",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "createtime",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鏃堕棿",
+                  "unresize": false,
+                  "width": 150
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": true,
+            "folderParentField": "",
+            "hasEditor": true,
+            "id": "auditTaskTable",
+            "limits": null,
+            "linkTypeFlag": false,
+            "oid": "0A8030A1-2E3F-5D7D-A599-961A3829E6C5",
+            "pageVO": null,
+            "queryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "type",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "type",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缁撴灉",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "assigner",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "assigner",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鎸囨淳浜�",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "principal",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "principal",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "璐熻矗浜�",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd",
+                "edit": "date",
+                "editConfig": null,
+                "event": null,
+                "field": "planedstartdate",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "planedstartdate",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "寮�浼氭椂闂�",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "place",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "place",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "寮�浼氬湴鐐�",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "creator",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓浜�",
+                "unresize": false,
+                "width": null
+              }
+            ],
+            "queryTemplateName": "ProcessReviewFlow",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "type",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缁撴灉",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "assigner",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鎸囨淳浜�",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "principal",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "璐熻矗浜�",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd",
+                "edit": "date",
+                "editConfig": null,
+                "event": null,
+                "field": "planedstartdate",
+                "fieldType": "date",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "寮�浼氭椂闂�",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "place",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "寮�浼氬湴鐐�",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator_name,(,creator,)",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "creator",
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓浜�",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "createtime",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鏃堕棿",
+                "unresize": false,
+                "width": 150
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:50.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "1",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:51.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "center",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "璇勫浠诲姟鍒楄〃",
+      "nameOid": null,
+      "oid": "2692E26B-8584-4561-8A03-D5921A82E490",
+      "orderNum": 1,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "璇勫浠诲姟鍒楄〃",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    },
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseEditAction#doAction",
+                "createTime": "2013-11-09 10:32:41.000",
+                "creator": "eddieliu",
+                "csClass": "plm.uif.actions.client.EditAction",
+                "description": "淇敼涓氬姟瀵硅薄",
+                "id": "edit",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-09 10:32:41.000",
+                "licensors": null,
+                "name": "淇敼",
+                "oid": "F8534EFE-130B-0CB3-D477-2AC7B19B7DC4"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.EditAction",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "edit",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "淇敼",
+              "oid": "43F34DC1-C229-359B-AED3-38CA9E7D1534",
+              "orderNum": 1,
+              "paramVOS": {
+                "owner": "true",
+                "context": "CreateAuditQuestionDocume",
+                "type": "document"
+              },
+              "pkComponent": "E00C3C31-D27F-E3AC-6C2B-1882EE8B6FEE",
+              "pkParentOid": "",
+              "url": "BaseEditAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "",
+                "createTime": "2021-12-03 15:28:19.000",
+                "creator": "developer",
+                "csClass": "net=VCI.Plugin.631.Actions.dll",
+                "description": "鍒犻櫎宸ヨ壓闂",
+                "id": "deleteprocessquestion",
+                "lastModifier": "developer",
+                "lastModifyTime": "2021-12-03 15:28:19.000",
+                "licensors": null,
+                "name": "鍒犻櫎宸ヨ壓闂",
+                "oid": "FD73DF30-7269-8A85-1B62-B92435000280"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "net=VCI.Plugin.631.Actions.dll",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "deleteprocessquestion",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒犻櫎",
+              "oid": "BE973D4A-CB99-10FC-3E31-F3010259F823",
+              "orderNum": 2,
+              "paramVOS": {
+                "owner": "true"
+              },
+              "pkComponent": "E00C3C31-D27F-E3AC-6C2B-1882EE8B6FEE",
+              "pkParentOid": "",
+              "url": ""
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒锋柊",
+              "oid": "A860B3E6-8FA5-92AE-8D8A-A2AE5CC552F4",
+              "orderNum": 3,
+              "paramVOS": {},
+              "pkComponent": "E00C3C31-D27F-E3AC-6C2B-1882EE8B6FEE",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "璇勫闂鍒楄〃",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "璇勫闂鍒楄〃",
+          "nameOid": null,
+          "oid": "E00C3C31-D27F-E3AC-6C2B-1882EE8B6FEE",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "90D6FE27-C15F-CEFF-3F5E-CB349F7954EE",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "document",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "code",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "缂栫爜",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "description",
+                  "fieldType": "textarea",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "璇勫闂",
+                  "unresize": false,
+                  "width": 200
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "creator_name,(,creator,)",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "creator",
+                  "style": null,
+                  "templet": null,
+                  "title": "鎻愬嚭浜�",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "createtime",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鎻愬嚭鏃堕棿",
+                  "unresize": false,
+                  "width": 160
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": true,
+            "folderParentField": "",
+            "hasEditor": false,
+            "id": "CreateAuditQuestionDocumentTable",
+            "limits": null,
+            "linkTypeFlag": false,
+            "oid": "ACBAC577-7AA5-631C-7848-4FDB898A4F27",
+            "pageVO": null,
+            "queryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "code",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": null
+              }
+            ],
+            "queryTemplateName": "querybyprocessreviewoidandtype",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "description",
+                "fieldType": "textarea",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "璇勫闂",
+                "unresize": false,
+                "width": 200
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator_name,(,creator,)",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "creator",
+                "style": null,
+                "templet": null,
+                "title": "鎻愬嚭浜�",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "createtime",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鎻愬嚭鏃堕棿",
+                "unresize": false,
+                "width": 160
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:50.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "2",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:52.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "center",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "璇勫闂鍒楄〃",
+      "nameOid": null,
+      "oid": "90D6FE27-C15F-CEFF-3F5E-CB349F7954EE",
+      "orderNum": 2,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "璇勫闂鍒楄〃",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    },
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "null",
+                "createTime": "2013-11-01 15:17:45.000",
+                "creator": "eddieliu",
+                "csClass": "plm.uif.actions.client.AddAction",
+                "description": "鍒涘缓涓氬姟瀵硅薄",
+                "id": "add",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-01 15:17:45.000",
+                "licensors": null,
+                "name": "鍒涘缓",
+                "oid": "65274704-5557-231C-E3EA-0B32B9BD5A0B"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.AddAction",
+              "description": "鏂板缓",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "add",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鏂板缓",
+              "oid": "E22EDA3A-3B94-107E-8FE1-DFE89B6A1EFA",
+              "orderNum": 1,
+              "paramVOS": {
+                "form": "CreateDocument",
+                "type": "document",
+                "initvalue": "doctype=9;processreviewoid=root.${oid}"
+              },
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "null"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseEditAction#doAction",
+                "createTime": "2013-11-09 10:32:41.000",
+                "creator": "eddieliu",
+                "csClass": "plm.uif.actions.client.EditAction",
+                "description": "淇敼涓氬姟瀵硅薄",
+                "id": "edit",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-09 10:32:41.000",
+                "licensors": null,
+                "name": "淇敼",
+                "oid": "F8534EFE-130B-0CB3-D477-2AC7B19B7DC4"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.EditAction",
+              "description": "淇敼",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "edit",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "淇敼",
+              "oid": "8F871EA3-23E9-9747-9FDD-DF275B424859",
+              "orderNum": 2,
+              "paramVOS": {
+                "form": "CreateDocument",
+                "checkNotOperation": "${lcstatus}=Editing"
+              },
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "BaseEditAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseDeleteAction",
+                "createTime": "2013-11-09 10:33:08.000",
+                "creator": "1",
+                "csClass": "plm.uif.actions.client.DeleteAction",
+                "description": "鍒犻櫎涓氬姟瀵硅薄",
+                "id": "del",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-09 10:33:08.000",
+                "licensors": null,
+                "name": "鍒犻櫎",
+                "oid": "2655E9F0-014B-DFEC-6F92-A6D1C51FDA19"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.DeleteAction",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "del",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒犻櫎",
+              "oid": "2FF8E947-0AFD-9D42-CD7C-156D16351AE8",
+              "orderNum": 3,
+              "paramVOS": {
+                "owner": "true",
+                "checkNotOperation": "${lcstatus}=Editing"
+              },
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "BaseDeleteAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseFileUploadAction#doAction",
+                "createTime": "2013-12-18 20:49:58.000",
+                "creator": "1",
+                "csClass": "plm.uif.actions.client.ChooseDocAction",
+                "description": "閫夋嫨鏂囦欢鎸傞潬鍒板瀷鍙峰璞�",
+                "id": "choosedoc",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-12-18 20:49:58.000",
+                "licensors": null,
+                "name": "涓婁紶鏂囦欢",
+                "oid": "88F7AF37-D1F5-DB2F-F6B3-50CA074CC399"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.ChooseDocAction",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "choosedoc",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "涓婁紶",
+              "oid": "0A5FED75-C33E-5E37-7195-62C108CFE099",
+              "orderNum": 4,
+              "paramVOS": {
+                "owner": "true",
+                "forsourcedata": "false",
+                "state": "Editing"
+              },
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "BaseFileUploadAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseStartWorkflowAction#doAction",
+                "createTime": "2014-03-17 10:14:40.000",
+                "creator": "developer",
+                "csClass": "plm.uif.actions.client.LaunchWorkFlowAction",
+                "description": "鍚姩娴佺▼",
+                "id": "launchworkflow",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-03-17 10:14:40.000",
+                "licensors": null,
+                "name": "鍚姩娴佺▼",
+                "oid": "56FE9470-AA2B-403B-F029-0A120FC94536"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "secAdmin",
+              "csUrl": "plm.uif.actions.client.LaunchWorkFlowAction",
+              "description": "鍚姩瀹$娴佺▼",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "launchworkflow",
+              "lastModifier": "secAdmin",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "瀹$",
+              "oid": "BB0A4339-57FA-EC9E-AE64-F6121BFAF8A0",
+              "orderNum": 5,
+              "paramVOS": {
+                "owner": "true",
+                "flowtemplates": "宸ヨ壓鏂囨。瀹$娴佺▼",
+                "type": "document"
+              },
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "BaseStartWorkflowAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒锋柊",
+              "oid": "110B50FD-67F2-8EA2-0400-D25D591218BA",
+              "orderNum": 6,
+              "paramVOS": {},
+              "pkComponent": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "璇勫璁板綍鍒楄〃",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "璇勫璁板綍鍒楄〃",
+          "nameOid": null,
+          "oid": "8FA7A8BD-5063-B118-D4FC-E5233404D182",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "13EF33B1-0A54-A1FE-D58F-EA6476B362EB",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "document",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "code",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "缂栫爜",
+                  "unresize": false,
+                  "width": 200
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "name",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍚嶇О",
+                  "unresize": false,
+                  "width": 200
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "doctype",
+                  "fieldType": "radio",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鏂囦欢绫诲瀷",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": "document${lcstatus}",
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "lcstatustext",
+                  "fieldType": "combox",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "lcstatus",
+                  "style": null,
+                  "templet": null,
+                  "title": "鐘舵��",
+                  "unresize": false,
+                  "width": 65
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "owner",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鎵�鏈夎��",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "description",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鎻忚堪",
+                  "unresize": false,
+                  "width": 200
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": true,
+            "folderParentField": "",
+            "hasEditor": true,
+            "id": "documentlistbyprocessreview",
+            "limits": [
+              15,
+              50,
+              100,
+              500,
+              1000
+            ],
+            "linkTypeFlag": false,
+            "oid": "070D07CA-0A42-F833-1297-BB03CB96159A",
+            "pageVO": {
+              "limit": 50,
+              "page": 1
+            },
+            "queryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "code",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "name",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": null
+              }
+            ],
+            "queryTemplateName": "queryreviewrecord",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": 200
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": 200
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "doctype",
+                "fieldType": "radio",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鏂囦欢绫诲瀷",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": "document${lcstatus}",
+                "data": [],
+                "dateFormate": null,
+                "edit": "combox",
+                "editConfig": null,
+                "event": null,
+                "field": "lcstatustext",
+                "fieldType": "combox",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "lcstatus",
+                "style": null,
+                "templet": null,
+                "title": "鐘舵��",
+                "unresize": false,
+                "width": 65
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "owner",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鎵�鏈夎��",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "description",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鎻忚堪",
+                "unresize": false,
+                "width": 200
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:50.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "3",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:52.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "center",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "璇勫璁板綍",
+      "nameOid": null,
+      "oid": "13EF33B1-0A54-A1FE-D58F-EA6476B362EB",
+      "orderNum": 3,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "璇勫璁板綍",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    },
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseFileDownloadAction#doAction",
+                "createTime": "2014-10-15 16:24:07.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "涓嬭浇鏂囦欢銆佹墦寮�鏂囦欢锛堝弬鏁皁pen涓簍rue锛�",
+                "id": "download",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-15 16:24:07.000",
+                "licensors": null,
+                "name": "涓嬭浇(鎵撳紑)鏂囦欢",
+                "oid": "C1753E00-81E3-62CE-32CB-AEF21005B92E"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "secAdmin",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "download",
+              "lastModifier": "secAdmin",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "涓嬭浇",
+              "oid": "A6D905FA-33FA-E76E-7E5C-BEA2A25D0640",
+              "orderNum": 2,
+              "paramVOS": {
+                "setpath": "true"
+              },
+              "pkComponent": "F6380995-A148-5EA4-46B8-65168D9F187C",
+              "pkParentOid": "",
+              "url": "BaseFileDownloadAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "secAdmin",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "secAdmin",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒锋柊",
+              "oid": "2D6CF3C0-8E18-CEED-0C04-A50628626D7D",
+              "orderNum": 4,
+              "paramVOS": {},
+              "pkComponent": "F6380995-A148-5EA4-46B8-65168D9F187C",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "闄勪欢鍒楄〃",
+          "nameOid": null,
+          "oid": "F6380995-A148-5EA4-46B8-65168D9F187C",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "8AD1439E-CCE4-FB83-6B95-30B4AF39B754",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "fileobject",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "name",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍚嶇О",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "filesize",
+                  "fieldType": "radio",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鏂囦欢澶у皬",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "creator_name,(,creator,)",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "creator",
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鑰�",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "createtime",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鏃堕棿",
+                  "unresize": false,
+                  "width": 160
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": false,
+            "folderParentField": "",
+            "hasEditor": false,
+            "id": "processReviewFileList",
+            "limits": null,
+            "linkTypeFlag": false,
+            "oid": "B774F347-E91F-6F6F-20D7-8E21703C2485",
+            "pageVO": null,
+            "queryColumns": null,
+            "queryTemplateName": "allProcessReviewFile",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "filesize",
+                "fieldType": "radio",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鏂囦欢澶у皬",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator_name,(,creator,)",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "creator",
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鑰�",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "createtime",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鏃堕棿",
+                "unresize": false,
+                "width": 160
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:51.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "5",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:52.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "center",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "宸ヨ壓璇勫闄勪欢鍒楄〃",
+      "nameOid": null,
+      "oid": "8AD1439E-CCE4-FB83-6B95-30B4AF39B754",
+      "orderNum": 5,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "宸ヨ壓璇勫闄勪欢鍒楄〃",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    }
+  ],
+  "checkInBy": null,
+  "checkInTime": null,
+  "checkOutBy": null,
+  "checkOutTime": null,
+  "copyFromVersion": null,
+  "createTime": "2022-02-08 10:40:50.000",
+  "creator": "developer",
+  "data": null,
+  "description": "",
+  "eastAreas": null,
+  "firstR": null,
+  "firstV": null,
+  "id": "ProcessReviewList_web",
+  "lastModifier": "developer",
+  "lastModifyTime": "2022-07-18 17:30:51.000",
+  "lastR": null,
+  "lastV": null,
+  "lcStatus": null,
+  "lcStatusText": null,
+  "lctid": null,
+  "linkTypeFlag": false,
+  "linkTypeId": null,
+  "name": "宸ヨ壓璇勫鍒楄〃_web",
+  "nameOid": null,
+  "northAreas": [],
+  "oid": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+  "owner": null,
+  "revisionOid": null,
+  "revisionRule": null,
+  "revisionSeq": 0,
+  "revisionValue": null,
+  "secretGrade": null,
+  "secretGradeText": null,
+  "southAreas": [
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseFileUploadAction#doAction",
+                "createTime": "2013-12-18 20:49:58.000",
+                "creator": "1",
+                "csClass": "plm.uif.actions.client.ChooseDocAction",
+                "description": "閫夋嫨鏂囦欢鎸傞潬鍒板瀷鍙峰璞�",
+                "id": "choosedoc",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-12-18 20:49:58.000",
+                "licensors": null,
+                "name": "涓婁紶鏂囦欢",
+                "oid": "88F7AF37-D1F5-DB2F-F6B3-50CA074CC399"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.ChooseDocAction",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "choosedoc",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "涓婁紶",
+              "oid": "C90C80C3-E9BF-CEE0-4CDC-804F8F98E3FB",
+              "orderNum": 1,
+              "paramVOS": {
+                "state": "Editing",
+                "checkout": "me;null"
+              },
+              "pkComponent": "A8572D5B-444E-C223-D5C7-7B02698852DA",
+              "pkParentOid": "",
+              "url": "BaseFileUploadAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseFileDownloadAction#doAction",
+                "createTime": "2014-10-15 16:24:07.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "涓嬭浇鏂囦欢銆佹墦寮�鏂囦欢锛堝弬鏁皁pen涓簍rue锛�",
+                "id": "download",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-15 16:24:07.000",
+                "licensors": null,
+                "name": "涓嬭浇(鎵撳紑)鏂囦欢",
+                "oid": "C1753E00-81E3-62CE-32CB-AEF21005B92E"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "secAdmin",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "download",
+              "lastModifier": "secAdmin",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "涓嬭浇",
+              "oid": "C76600A6-F38C-107F-CBFB-F33A1EC6B605",
+              "orderNum": 2,
+              "paramVOS": {
+                "setpath": "true"
+              },
+              "pkComponent": "A8572D5B-444E-C223-D5C7-7B02698852DA",
+              "pkParentOid": "",
+              "url": "BaseFileDownloadAction#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "BaseDeleteAction",
+                "createTime": "2013-11-09 10:33:08.000",
+                "creator": "1",
+                "csClass": "plm.uif.actions.client.DeleteAction",
+                "description": "鍒犻櫎涓氬姟瀵硅薄",
+                "id": "del",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-09 10:33:08.000",
+                "licensors": null,
+                "name": "鍒犻櫎",
+                "oid": "2655E9F0-014B-DFEC-6F92-A6D1C51FDA19"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:52.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.DeleteAction",
+              "description": "鍒犻櫎閫夊畾鐨勯檮浠�",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "del",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:52.000",
+              "name": "鍒犻櫎",
+              "oid": "13C61671-1632-2462-8A25-4C2E4205714A",
+              "orderNum": 3,
+              "paramVOS": {
+                "owner": "true",
+                "state": "Editing",
+                "checkout": "me;null"
+              },
+              "pkComponent": "A8572D5B-444E-C223-D5C7-7B02698852DA",
+              "pkParentOid": "",
+              "url": "BaseDeleteAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:53.000",
+              "creator": "secAdmin",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "secAdmin",
+              "lastModifyTime": "2022-07-18 17:30:53.000",
+              "name": "鍒锋柊",
+              "oid": "E9119347-26C4-3BE8-2EA2-B4FCC54120CF",
+              "orderNum": 4,
+              "paramVOS": {},
+              "pkComponent": "A8572D5B-444E-C223-D5C7-7B02698852DA",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "闄勪欢鍒楄〃",
+          "nameOid": null,
+          "oid": "A8572D5B-444E-C223-D5C7-7B02698852DA",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "2F2DC6AB-C9BD-298E-9F7F-44D7F1197CFE",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "fileobject",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "name",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍚嶇О",
+                  "unresize": false,
+                  "width": 300
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "filesize",
+                  "fieldType": "radio",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鏂囦欢澶у皬",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "creator_name,(,creator,)",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "creator",
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鑰�",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "createtime",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鏃堕棿",
+                  "unresize": false,
+                  "width": 150
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": false,
+            "folderParentField": "",
+            "hasEditor": false,
+            "id": "documentFileList",
+            "limits": [
+              15,
+              50,
+              100,
+              500,
+              1000
+            ],
+            "linkTypeFlag": false,
+            "oid": "40F0266E-9D12-F284-196B-379A40236F69",
+            "pageVO": null,
+            "queryColumns": null,
+            "queryTemplateName": "DocumentFiles",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": 300
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "filesize",
+                "fieldType": "radio",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鏂囦欢澶у皬",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator_name,(,creator,)",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "creator",
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鑰�",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "createtime",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鏃堕棿",
+                "unresize": false,
+                "width": 150
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:51.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "ContextPages[3]",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "1",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:52.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "south",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "闄勪欢鍒楄〃",
+      "nameOid": null,
+      "oid": "2F2DC6AB-C9BD-298E-9F7F-44D7F1197CFE",
+      "orderNum": 1,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "闄勪欢鍒楄〃",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    }
+  ],
+  "ts": null,
+  "versionRule": null,
+  "versionSeq": 0,
+  "versionValue": null,
+  "westAreas": [
+    {
+      "btmname": null,
+      "checkInBy": null,
+      "checkInTime": null,
+      "checkOutBy": null,
+      "checkOutTime": null,
+      "componentVOs": [
+        {
+          "btmname": null,
+          "buttons": [
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "CreateAuditTask#doAction",
+                "createTime": "2022-03-02 15:12:06.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "",
+                "id": "createAuditTask",
+                "lastModifier": "developer",
+                "lastModifyTime": "2022-03-02 15:12:06.000",
+                "licensors": null,
+                "name": "鍒涘缓璇勫浠诲姟",
+                "oid": "A269D5E9-9F6D-48D5-B85D-F12CD49172F9"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:51.000",
+              "creator": "developer",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "createAuditTask",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:51.000",
+              "name": "鍒涘缓璇勫浠诲姟",
+              "oid": "F93CF464-0DD5-98F0-BA54-91C5C72F54ED",
+              "orderNum": 1,
+              "paramVOS": {
+                "form": "createAuditTask_web",
+                "state": "Waiting",
+                "type": "audittask"
+              },
+              "pkComponent": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+              "pkParentOid": "",
+              "url": "CreateAuditTask#doAction"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "",
+                "createTime": "2021-11-01 10:08:29.000",
+                "creator": "developer",
+                "csClass": "net=VCI.Plugin.631.Actions.dll",
+                "description": "宸ヨ壓璇勫寰呭鎵圭姸鎬佸悗鍙紑鍐呴儴璇勫",
+                "id": "conductinternalreview",
+                "lastModifier": "developer",
+                "lastModifyTime": "2021-11-01 10:08:29.000",
+                "licensors": null,
+                "name": "鍙紑鍐呴儴璇勫",
+                "oid": "ACA8CD35-593F-77D9-91B7-910B62F524E1"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:51.000",
+              "creator": "developer",
+              "csUrl": "net=VCI.Plugin.631.Actions.dll",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "conductinternalreview",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:51.000",
+              "name": "鍙紑鍐呴儴璇勫",
+              "oid": "1E72BCA6-4FB2-0BC8-BE99-F6EDC43CCA10",
+              "orderNum": 2,
+              "paramVOS": {},
+              "pkComponent": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+              "pkParentOid": "",
+              "url": ""
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "null",
+                "createTime": "2013-11-01 15:17:45.000",
+                "creator": "eddieliu",
+                "csClass": "plm.uif.actions.client.AddAction",
+                "description": "鍒涘缓涓氬姟瀵硅薄",
+                "id": "add",
+                "lastModifier": "developer",
+                "lastModifyTime": "2013-11-01 15:17:45.000",
+                "licensors": null,
+                "name": "鍒涘缓",
+                "oid": "65274704-5557-231C-E3EA-0B32B9BD5A0B"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2024-03-06 10:19:40.000",
+              "creator": "developer",
+              "csUrl": "plm.uif.actions.client.AddAction",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "add",
+              "lastModifier": "developer",
+              "lastModifyTime": "2024-03-06 10:19:40.000",
+              "name": "娣诲姞璇勫闂",
+              "oid": "03BAFFA5-DB8F-443A-7E61-3291CD70C6A6",
+              "orderNum": 3,
+              "paramVOS": {
+                "context": "CreateAuditQuestionDocume",
+                "type": "document",
+                "initvalue": "processreviewoid=${oid};doctype=8"
+              },
+              "pkComponent": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+              "pkParentOid": "",
+              "url": "null"
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "",
+                "createTime": "2021-11-02 14:06:38.000",
+                "creator": "developer",
+                "csClass": "net=VCI.Plugin.631.Actions.dll",
+                "description": "",
+                "id": "opinionsummary",
+                "lastModifier": "developer",
+                "lastModifyTime": "2021-11-02 14:06:38.000",
+                "licensors": null,
+                "name": "闂姹囨��",
+                "oid": "E3B2E5E8-ED65-1E6E-E372-9566F5D9F6BA"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:51.000",
+              "creator": "developer",
+              "csUrl": "net=VCI.Plugin.631.Actions.dll",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "opinionsummary",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:51.000",
+              "name": "璇勫闂姹囨��",
+              "oid": "B4341516-67A2-7866-5239-27445C65C533",
+              "orderNum": 4,
+              "paramVOS": {
+                "form": "CreateAuditQuestionDocument",
+                "type": "document"
+              },
+              "pkComponent": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+              "pkParentOid": "",
+              "url": ""
+            },
+            {
+              "actionVO": {
+                "actionCls": "",
+                "actionUsedType": "business",
+                "bsUrl": "RefreshAction",
+                "createTime": "2014-10-16 13:07:56.000",
+                "creator": "developer",
+                "csClass": "",
+                "description": "鍒锋柊椤甸潰",
+                "id": "refresh",
+                "lastModifier": "developer",
+                "lastModifyTime": "2014-10-16 13:07:56.000",
+                "licensors": null,
+                "name": "鍒锋柊锛堥噸缃級",
+                "oid": "526E913C-231F-E4CF-D90D-AB968F8C8D45"
+              },
+              "areaType": "tab",
+              "authorization": true,
+              "children": null,
+              "createTime": "2022-07-18 17:30:51.000",
+              "creator": "developer",
+              "csUrl": "",
+              "description": "",
+              "displayMode": "textandimage",
+              "hidden": false,
+              "iconPath": "",
+              "id": "refresh",
+              "lastModifier": "developer",
+              "lastModifyTime": "2022-07-18 17:30:51.000",
+              "name": "鍒锋柊",
+              "oid": "F52BE746-4D0E-9E00-1D5E-E3729DEEE1FA",
+              "orderNum": 9,
+              "paramVOS": {},
+              "pkComponent": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+              "pkParentOid": "",
+              "url": "RefreshAction"
+            }
+          ],
+          "checkInBy": null,
+          "checkInTime": null,
+          "checkOutBy": null,
+          "checkOutTime": null,
+          "copyFromVersion": null,
+          "createTime": null,
+          "creator": null,
+          "customClass": null,
+          "data": null,
+          "description": "宸ヨ壓璇勫鍒楄〃",
+          "extendAttr": "",
+          "firstR": null,
+          "firstV": null,
+          "formDefineVO": null,
+          "id": null,
+          "lastModifier": null,
+          "lastModifyTime": null,
+          "lastR": null,
+          "lastV": null,
+          "lcStatus": null,
+          "lcStatusText": null,
+          "lctid": null,
+          "name": "宸ヨ壓璇勫鍒楄〃",
+          "nameOid": null,
+          "oid": "8D269B20-03E4-A9B0-7D06-4BE074EEF4DD",
+          "orderNum": 1,
+          "owner": null,
+          "pkLayout": "E28B0555-FAF3-4F59-0EE8-64A30A77C9CB",
+          "revisionOid": null,
+          "revisionRule": null,
+          "revisionSeq": 0,
+          "revisionValue": null,
+          "secretGrade": null,
+          "secretGradeText": null,
+          "tableDefineVO": {
+            "btmType": "processreview",
+            "cols": [
+              [
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "name",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍚嶇О",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "code",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "缂栫爜",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": "EnumReviewType",
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "reviewtypetext",
+                  "fieldType": "combox",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "reviewtype",
+                  "style": null,
+                  "templet": null,
+                  "title": "绫诲瀷",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "content",
+                  "fieldType": "textarea",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "澶囨敞",
+                  "unresize": false,
+                  "width": 150
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": "ProcessReviewLC${lcstatus}",
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "lcstatus_text",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "lcstatus",
+                  "style": null,
+                  "templet": null,
+                  "title": "鐘舵��",
+                  "unresize": false,
+                  "width": 100
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": null,
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "creator_name,(,creator,)",
+                  "fieldType": "text",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": "creator",
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓浜�",
+                  "unresize": false,
+                  "width": 80
+                },
+                {
+                  "align": "left",
+                  "colspan": 1,
+                  "comboxKey": null,
+                  "data": [],
+                  "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                  "edit": "",
+                  "editConfig": null,
+                  "event": null,
+                  "field": "createtime",
+                  "fieldType": "date",
+                  "fixed": null,
+                  "hidden": false,
+                  "minWidth": null,
+                  "optionButtons": null,
+                  "optionField": false,
+                  "optionJsMap": null,
+                  "queryField": null,
+                  "referConfig": null,
+                  "rowspan": 1,
+                  "showField": null,
+                  "sort": false,
+                  "sortField": null,
+                  "style": null,
+                  "templet": null,
+                  "title": "鍒涘缓鏃ユ湡",
+                  "unresize": false,
+                  "width": 160
+                }
+              ]
+            ],
+            "displayFolder": false,
+            "displayQueryArea": true,
+            "folderParentField": "",
+            "hasEditor": true,
+            "id": "ProcessReviewTable",
+            "limits": null,
+            "linkTypeFlag": false,
+            "oid": "1E0178AC-9738-0F8F-BDAE-59ECEFB84A62",
+            "pageVO": null,
+            "queryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "name",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "code",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": null
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": "EnumReviewType",
+                "data": null,
+                "dateFormate": null,
+                "edit": "combox",
+                "editConfig": null,
+                "event": null,
+                "field": "reviewtypetext",
+                "fieldType": null,
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": "reviewtype",
+                "referConfig": null,
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "reviewtype",
+                "style": null,
+                "templet": null,
+                "title": "绫诲瀷",
+                "unresize": false,
+                "width": null
+              }
+            ],
+            "queryTemplateName": "queryWaitingPR",
+            "seniorQueryColumns": [
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "name",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍚嶇О",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "code",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "缂栫爜",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": "EnumReviewType",
+                "data": [],
+                "dateFormate": null,
+                "edit": "combox",
+                "editConfig": null,
+                "event": null,
+                "field": "reviewtypetext",
+                "fieldType": "combox",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "reviewtype",
+                "style": null,
+                "templet": null,
+                "title": "绫诲瀷",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "content",
+                "fieldType": "textarea",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "澶囨敞",
+                "unresize": false,
+                "width": 150
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": "ProcessReviewLC${lcstatus}",
+                "data": [],
+                "dateFormate": null,
+                "edit": "combox",
+                "editConfig": null,
+                "event": null,
+                "field": "lcstatus_text",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "lcstatus",
+                "style": null,
+                "templet": null,
+                "title": "鐘舵��",
+                "unresize": false,
+                "width": 100
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": null,
+                "edit": null,
+                "editConfig": null,
+                "event": null,
+                "field": "creator_name,(,creator,)",
+                "fieldType": "text",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": "creator",
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓浜�",
+                "unresize": false,
+                "width": 80
+              },
+              {
+                "align": "left",
+                "colspan": 1,
+                "comboxKey": null,
+                "data": [],
+                "dateFormate": "yyyy-MM-dd HH:mm:ss",
+                "edit": "date",
+                "editConfig": null,
+                "event": null,
+                "field": "createtime",
+                "fieldType": "date",
+                "fixed": null,
+                "hidden": false,
+                "minWidth": null,
+                "optionButtons": null,
+                "optionField": false,
+                "optionJsMap": null,
+                "queryField": null,
+                "referConfig": {
+                  "backPath": null,
+                  "displayTable": null,
+                  "height": null,
+                  "initSort": null,
+                  "loadType": "all",
+                  "mapFields": null,
+                  "method": "GET",
+                  "muti": false,
+                  "onlyLeaf": false,
+                  "paramForFormKey": null,
+                  "parentFieldName": null,
+                  "parentUsedField": null,
+                  "parentValue": null,
+                  "referContent": null,
+                  "referType": null,
+                  "remoteSort": false,
+                  "tableConfig": null,
+                  "textField": "name",
+                  "type": null,
+                  "url": null,
+                  "useFormKey": null,
+                  "valueField": "oid",
+                  "where": null
+                },
+                "rowspan": 1,
+                "showField": null,
+                "sort": false,
+                "sortField": null,
+                "style": null,
+                "templet": null,
+                "title": "鍒涘缓鏃ユ湡",
+                "unresize": false,
+                "width": 160
+              }
+            ],
+            "whereSql": ""
+          },
+          "treeDefineVO": null,
+          "treeTableDefineVO": null,
+          "ts": null,
+          "uiComponentType": "table",
+          "uiComponentTypeText": "琛ㄦ牸",
+          "uiParseClass": "",
+          "versionRule": null,
+          "versionSeq": 0,
+          "versionValue": null
+        }
+      ],
+      "copyFromVersion": null,
+      "createTime": "2022-02-08 10:40:51.000",
+      "creator": "developer",
+      "data": null,
+      "description": "",
+      "displayExpression": "",
+      "enableStatus": true,
+      "extendAttr": "",
+      "firstR": null,
+      "firstV": null,
+      "id": "1",
+      "international": null,
+      "lastModifier": "developer",
+      "lastModifyTime": "2022-07-18 17:30:51.000",
+      "lastR": null,
+      "lastV": null,
+      "layoutAreaType": "west",
+      "layoutAreaTypeText": null,
+      "lcStatus": null,
+      "lcStatusText": null,
+      "lctid": null,
+      "name": "宸ヨ壓璇勫鍒楄〃",
+      "nameOid": null,
+      "oid": "E28B0555-FAF3-4F59-0EE8-64A30A77C9CB",
+      "orderNum": 1,
+      "owner": null,
+      "pkContent": "DBB13AF7-021F-ED27-B285-03E8599548EB",
+      "revisionOid": null,
+      "revisionRule": null,
+      "revisionSeq": 0,
+      "revisionValue": null,
+      "secretGrade": null,
+      "secretGradeText": null,
+      "title": "宸ヨ壓璇勫鍒楄〃",
+      "ts": null,
+      "uiParseClass": "",
+      "versionRule": null,
+      "versionSeq": 0,
+      "versionValue": null
+    }
+  ]
+}

--
Gitblit v1.9.3