andy 1 жил өмнө
parent
commit
ad8d5d1f01
25 өөрчлөгдсөн 237 нэмэгдсэн , 270 устгасан
  1. 0 1
      pom.xml
  2. 191 0
      src/main/java/com/scbfkj/uni/process/IBMMQ.java
  3. 3 1
      src/main/java/com/scbfkj/uni/service/LoggerService.java
  4. 8 0
      src/main/resources/application-ca.yml
  5. 0 7
      src/main/resources/application-dev.properties
  6. 8 0
      src/main/resources/application-dev.yml
  7. 0 8
      src/main/resources/application-kinbase8.properties
  8. 0 7
      src/main/resources/application-test.properties
  9. 8 0
      src/main/resources/application-test.yml
  10. 0 7
      src/main/resources/application-zxx.properties
  11. 8 0
      src/main/resources/application-zxx.yml
  12. 0 9
      src/main/resources/application.properties
  13. 11 0
      src/main/resources/application.yml
  14. 0 10
      src/main/resources/db/systemset/V1_1__create_system_info_table.sql
  15. 0 16
      src/main/resources/db/systemset/V1_2__create_service_info_table.sql
  16. 0 13
      src/main/resources/db/systemset/V1_3__create_container_table.sql
  17. 0 8
      src/main/resources/db/systemset/V1_4__create_datasource_table.sql
  18. 0 9
      src/main/resources/db/systemset/V1_5__create_key_alias_table.sql
  19. 0 12
      src/main/resources/db/systemset/V1_6__create_data_cache_table.sql
  20. 0 13
      src/main/resources/db/systemset/V1_7__create_service_state_table.sql
  21. 0 14
      src/main/resources/db/systemset/V1_8__create_algorithm_library_table.sql
  22. 0 8
      src/main/resources/db/systemset/V1_9__create_service_type_table.sql
  23. 0 45
      src/main/resources/db/uniauth/V1_1__create_page_configuration_table.sql
  24. 0 19
      src/main/resources/sql/systemset/add_serviceinfo.sql
  25. 0 63
      src/main/resources/sql/uniauth/add_pageconfiguration.sql

+ 0 - 1
pom.xml

@@ -85,7 +85,6 @@
         <dependency>
             <groupId>org.xerial</groupId>
             <artifactId>sqlite-jdbc</artifactId>
-            <scope>runtime</scope>
         </dependency>
         <dependency>
             <groupId>org.springframework.boot</groupId>

+ 191 - 0
src/main/java/com/scbfkj/uni/process/IBMMQ.java

@@ -0,0 +1,191 @@
+package com.scbfkj.uni.process;
+
+
+import com.fasterxml.jackson.databind.ObjectMapper;
+import com.ibm.mq.MQException;
+import com.ibm.msg.client.wmq.compat.base.internal.*;
+import org.springframework.util.StringUtils;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+
+import static com.ibm.msg.client.wmq.compat.base.internal.MQC.MQCCSI_Q_MGR;
+
+
+public class IBMMQ {
+
+
+    private MQQueueManager queueManager = null;
+    private final ObjectMapper mapper = new ObjectMapper();
+
+    public List<String> receptionMessage(
+            String host, Long port, String channel, String queueManager, String queueName, Long ccsid, String username, String password, Long receiveTimeout, Long pollSize, Long retry) throws MQException, InterruptedException {
+        MQQueueManager mqQueueManager = getMqQueueManager(host, port.intValue(), channel, queueManager, ccsid.intValue(), username, password);
+        MQQueue queue = mqQueueManager.accessQueue(
+                queueName,
+                MQC.MQOO_INPUT_AS_Q_DEF | MQC.MQOO_OUTPUT | MQC.MQOO_INQUIRE
+        );
+        MQGetMessageOptions gmo = new MQGetMessageOptions();
+        gmo.waitInterval = receiveTimeout.intValue();
+
+        long maxSize = 100;
+        if (pollSize > 0) {
+            maxSize = pollSize;
+        }
+        int maxRetry = 0;
+        List<String> result = new ArrayList<>();
+        if (queue.getCurrentDepth() == 0) {
+            return result;
+        }
+
+        while (queue.getCurrentDepth() > 0) {
+            try {
+                MQMessage message = new MQMessage();
+                queue.get(message, gmo);
+                if (message.getDataLength() > 0) {
+                    String messageResult = message.readStringOfByteLength(message.getDataLength());
+                    result.add(messageResult);
+                    if (maxSize <= result.size()) {
+                        return result;
+                    }
+                }
+            } catch (Exception e) {
+                maxRetry++;
+                if (maxRetry > retry) {
+                    e.printStackTrace();
+                    try {
+                        if (queue.isOpen()) {
+
+                            queue.close();
+                        }
+                    } catch (Exception ex) {
+                        ex.printStackTrace();
+                    }
+                    try {
+                        if (mqQueueManager.isOpen()) {
+                            mqQueueManager.close();
+                        }
+                    } catch (Exception ex) {
+                        ex.printStackTrace();
+                    }
+                    return result;
+                }
+            } finally {
+                try {
+                    if (queue.isOpen()) {
+
+                        queue.close();
+                    }
+                } catch (Exception ex) {
+                    ex.printStackTrace();
+                }
+            }
+        }
+        return result;
+
+
+    }
+
+
+    public void sendMessage(
+            String host, Long port, String channel, String queueManager, String queueName, int ccsid, String username,
+            String password,
+            Long characterSet,
+            Object data
+    ) throws MQException {
+
+        MQQueueManager mqQueueManager = getMqQueueManager(host, port.intValue(), channel, queueManager, ccsid, username, password);
+        MQQueue queue = mqQueueManager.accessQueue(
+                queueName,
+                MQC.MQOO_INPUT_AS_Q_DEF | MQC.MQOO_OUTPUT | MQC.MQOO_INQUIRE | MQC.MQOO_FAIL_IF_QUIESCING
+        );
+        try {
+            if (data instanceof Object[] datas) {
+                for (Object it : datas) {
+
+                    execSend(characterSet, it, queue);
+                }
+            } else if (data instanceof Iterable<?> datas) {
+                datas.forEach(it -> {
+                });
+
+                for (Object it : datas) {
+
+                    execSend(characterSet, it, queue);
+                }
+            } else {
+                execSend(characterSet, data, queue);
+            }
+
+        } catch (Exception e) {
+            e.printStackTrace();
+            try {
+                if (queue.isOpen()) {
+
+                    queue.close();
+                }
+            } catch (Exception ex) {
+                ex.printStackTrace();
+            }
+            try {
+                if (mqQueueManager.isOpen()) {
+                    mqQueueManager.close();
+                }
+            } catch (Exception ex) {
+                ex.printStackTrace();
+            }
+
+        } finally {
+            try {
+                if (queue.isOpen()) {
+
+                    queue.close();
+                }
+            } catch (Exception ex) {
+                ex.printStackTrace();
+            }
+        }
+    }
+
+
+    private void execSend(
+            Long characterSet,
+            Object data,
+            MQQueue queue
+    ) throws IOException, MQException {
+        MQMessage mqMessage = new MQMessage();
+
+        if (characterSet == null) {
+            mqMessage.characterSet = MQCCSI_Q_MGR;
+        } else {
+            mqMessage.characterSet = characterSet.intValue();
+
+        }
+
+        mqMessage.write(mapper.writeValueAsBytes(data));
+        MQPutMessageOptions messageOptions = new MQPutMessageOptions();
+        queue.put(mqMessage, messageOptions); //发送消息
+    }
+
+
+    private MQQueueManager getMqQueueManager(String host, int port, String channel, String queueManagerName, int ccsid, String username, String password) throws MQException {
+
+        if (null == queueManager) {
+            HashMap<String, Object> prop = new HashMap<>();
+            prop.put(MQC.HOST_NAME_PROPERTY, host);
+            prop.put(MQC.PORT_PROPERTY, port);
+            prop.put(MQC.CHANNEL_PROPERTY, channel);
+            prop.put(MQC.CCSID_PROPERTY, ccsid);
+            if (StringUtils.hasText(username) && StringUtils.hasText(password)) {
+                prop.put(MQC.USER_ID_PROPERTY, username);
+                prop.put(MQC.PASSWORD_PROPERTY, password);
+            }
+            queueManager = new MQQueueManager(queueManagerName, prop);
+        }
+        return queueManager;
+    }
+
+
+}

+ 3 - 1
src/main/java/com/scbfkj/uni/service/LoggerService.java

@@ -66,7 +66,9 @@ public class LoggerService {
             }
             DATA_BASE.updateBatch(connectionStr, "insert into logs (target,currentfile,datasourceid,expression,datacontent) values(?,?,?,?,?)", datas);
         } catch (Exception e) {
-            System.out.println(UniReturnUtil.getMessage(e));
+            if (Config.isDebug()) {
+                e.printStackTrace();
+            }
         }
     }
 

+ 8 - 0
src/main/resources/application-ca.yml

@@ -0,0 +1,8 @@
+app:
+  container:
+    code: ca
+db:
+  center:
+    config: Txi9ya5PabXzHN8WnmQS0iRyu8Y8t3k+KSlM1cMU1UhckC/JDKXavVI5ymo5DM6ZpEC0ffSI/hTRR0VVXwLSc4sx24Vhwf+ZeGjvSa0bhPrrRZW20gnHzbndX7lV8GzGx6b38IX+jVZ6i5IM0dfppjUNZr4+0lw20F/lq/iomU15DxqrxSgbd5YnujQoBI7v6v4AnZo8OynXGORbguiZraDKqx6t5b3HarRzFZ9nNS85eyv1vFP7P6r2FsvxG8xdA2Ha38ievRbZs139o+BGuh6WiSObrxUKmKvyjmzy7dFKFaSwgilBNFRuCPN17OnkbACP/dFqDecsU3e/yKboIw==
+  security:
+    config: AhHDxqQuEej5TXfDUdki35g2Qe7G9GUnNPHLxyfmKHVOsbrwZAtAuSoWSow/JYTSwCe2seOrv/eH5e+/5/PkoUHCS3tUMDJiJkBEONgJxNl0jHEVv4clGg4SB9JOZkDNI60r4f0NuBEHjE/Cb0/i4l2/IpyB+Nc+Xxi6IIDizIielOFZLHwba1uEVNC69tStUAqxVW/vZDK7vGpT2IpaYcZoKB0Nhf6c1mt5LUWmP49GdcrxhCL+wxpMROP3hrnyPmjyCpBMLj1uMDcI8AztUDm6KPx348imgrTroZsr5u1hpUG0o3KJSi9ZRSlOdJF7507WL7Cz7cH63SNY6VL1RA==

+ 0 - 7
src/main/resources/application-dev.properties

@@ -1,7 +0,0 @@
-db.center.config=hLcDKcDr4MgqYdb8j0gF0nF806yUy1UdEp1nmztEdo5rNL8IZliDj7/feOp2Fc7j19m9jtiwFp5nPvClI1Ni4kxluI8MQepS8nBK3bEzRzsGSswNHa/Sjyw0GK9/ZnOaiD+lDQyI7+fVbmpdvkLy7QE07bpTIjdI1tcLx8Z9QWs=
-db.security.config=Jnj84d14EmSgKEXyAbSH+bratWGkpV89/VA5Er4yQOt7qlnKtGYJzBVJNNYMBdmSlW0G+nqDHMhJQcmHrwbjjChYuGeDcmKSRmvFQ9u7LwqmgEfazzKKoVawXmJ40dMsec2yaFyNnCM92xn1hzHvle5BL7x3kza2htGm+iOqO7Y=
-#log.target=B7xSbq4imA5zapX8kEO42mU/5sA2TyF/Ba2Y/++F3z9Np7iT4ywDUkbRC4w/Xrxv1kMSR8PQMJ4dfYwc3mYj0SJJivN5A5/6hI+ZSQBabfZZrYwaIIRdM1XIk4wo1SIrSCXKzef8X6YUH70R2tnh+Uq6KNNp08KaZ2ZXM8vX5Ss=
-server.port=9500
-app.container.code=dev
-app.security.enable=false
-app.debug=true

+ 8 - 0
src/main/resources/application-dev.yml

@@ -0,0 +1,8 @@
+app:
+  container:
+    code: dev
+db:
+  center:
+    config: hLcDKcDr4MgqYdb8j0gF0nF806yUy1UdEp1nmztEdo5rNL8IZliDj7/feOp2Fc7j19m9jtiwFp5nPvClI1Ni4kxluI8MQepS8nBK3bEzRzsGSswNHa/Sjyw0GK9/ZnOaiD+lDQyI7+fVbmpdvkLy7QE07bpTIjdI1tcLx8Z9QWs=
+  security:
+    config: Jnj84d14EmSgKEXyAbSH+bratWGkpV89/VA5Er4yQOt7qlnKtGYJzBVJNNYMBdmSlW0G+nqDHMhJQcmHrwbjjChYuGeDcmKSRmvFQ9u7LwqmgEfazzKKoVawXmJ40dMsec2yaFyNnCM92xn1hzHvle5BL7x3kza2htGm+iOqO7Y=

+ 0 - 8
src/main/resources/application-kinbase8.properties

@@ -1,8 +0,0 @@
-db.center.config=A0SelKtVJgLGot4XrMTnjv3/4KIKHcZb6tEXvLSqTown42q25BPSHsINRg42mrF8J2/vbwsQQtJWDs4DKVqc2kRkenu21FuOCuqmGxlINY7tBQxyJykK7IJ3Ovn7N7bsaX0PNnEcTgmNQpGrHxIgAc3uK1PYeZ1rTKMqlhNd+Jd6EMDvYPrsH/EtxrusM1s4S/BgKiOwSy7nUCjFlpczzxLJqRuQF8Ylz7ZqcNKkwsE78JOOOh/sPuTevO/6MkAGx+6T9/99M0RnGf2P9tegcKA0ioeTfzfqjAoUx74AzdozjLiPF0wqMJvICeAxHO0MQMYEqbDxXJ7dMBsu5fYyLxyTUKVsR17FIY3CiqlUsX2y2IlU/RqkaGJmZby5G2Tf5HkJm8Af3v4588BydS0pVwQXwPhdQ3yRnUAtOOw+OEqxkr/NNwoD1xTDKXJYIFG4o7rg2yvF5BCly4txXf1jPEpMAbjFc0tzorFq/D7+qY2Eno1HmVzg7PfchDyys2Ji
-db.security.config=RGIZkxRktnDmJuGudHR1OwH2bEAi0vv/Yoi/0P8WasTDLKdCxtNlq4djWqP+y19BmwZ1WZC0oeqRll9venaZ9+V0O0Msy1u8FcUa0wEOENJnN2DLxDyH/nRSdHkAMdre6XSKcI8VHc+Jb1rM0gaylJmQ8NOrr9xjQlWxwyB3w9OevGe72sUNvLf9YOLcm5iGgLmciU/BLJjrGjJuAoWgIU30n89HhvJJAmjSGGXJC1V9ecP7TwNG0rtRnL23tsw9N47pJjKqJjnFFuU+jJG0EkjzzoIJETzrqiJQ/cYtSI0w3HXjQp2dSx6iIRZ7EyIRKdUhevbTHp8bCkP9o5YQOD7gf3ASYTdTRpkTBdy/HsTIf81wTHRyCWTnSgmuXsqRdvG453Uxl27QDF0Z79K2lIzqBPs8HZwztiqMDt6dOLvsob4Vbv2bLzXhHkCLauFNhfsgtDhUUPBt+GNj/IfUySwDI+8bxSdX1iIoHcNvd5NLYc4q2jQJp2hXUrk0pTFV
-#log.target=B7xSbq4imA5zapX8kEO42mU/5sA2TyF/Ba2Y/++F3z9Np7iT4ywDUkbRC4w/Xrxv1kMSR8PQMJ4dfYwc3mYj0SJJivN5A5/6hI+ZSQBabfZZrYwaIIRdM1XIk4wo1SIrSCXKzef8X6YUH70R2tnh+Uq6KNNp08KaZ2ZXM8vX5Ss=
-server.port=9500
-app.container.code=dev
-app.enable-flyway=false
-app.enable-reset-config=false
-app.security.enable=true

+ 0 - 7
src/main/resources/application-test.properties

@@ -1,7 +0,0 @@
-db.center.config=hLcDKcDr4MgqYdb8j0gF0nF806yUy1UdEp1nmztEdo5rNL8IZliDj7/feOp2Fc7j19m9jtiwFp5nPvClI1Ni4kxluI8MQepS8nBK3bEzRzsGSswNHa/Sjyw0GK9/ZnOaiD+lDQyI7+fVbmpdvkLy7QE07bpTIjdI1tcLx8Z9QWs=
-db.security.config=Jnj84d14EmSgKEXyAbSH+bratWGkpV89/VA5Er4yQOt7qlnKtGYJzBVJNNYMBdmSlW0G+nqDHMhJQcmHrwbjjChYuGeDcmKSRmvFQ9u7LwqmgEfazzKKoVawXmJ40dMsec2yaFyNnCM92xn1hzHvle5BL7x3kza2htGm+iOqO7Y=
-#log.target=B7xSbq4imA5zapX8kEO42mU/5sA2TyF/Ba2Y/++F3z9Np7iT4ywDUkbRC4w/Xrxv1kMSR8PQMJ4dfYwc3mYj0SJJivN5A5/6hI+ZSQBabfZZrYwaIIRdM1XIk4wo1SIrSCXKzef8X6YUH70R2tnh+Uq6KNNp08KaZ2ZXM8vX5Ss=
-server.port=9500
-app.container.code=test
-app.security.enable=false
-app.debug=true

+ 8 - 0
src/main/resources/application-test.yml

@@ -0,0 +1,8 @@
+app:
+  container:
+    code: test
+db:
+  center:
+    config: hLcDKcDr4MgqYdb8j0gF0nF806yUy1UdEp1nmztEdo5rNL8IZliDj7/feOp2Fc7j19m9jtiwFp5nPvClI1Ni4kxluI8MQepS8nBK3bEzRzsGSswNHa/Sjyw0GK9/ZnOaiD+lDQyI7+fVbmpdvkLy7QE07bpTIjdI1tcLx8Z9QWs=
+  security:
+    config: Jnj84d14EmSgKEXyAbSH+bratWGkpV89/VA5Er4yQOt7qlnKtGYJzBVJNNYMBdmSlW0G+nqDHMhJQcmHrwbjjChYuGeDcmKSRmvFQ9u7LwqmgEfazzKKoVawXmJ40dMsec2yaFyNnCM92xn1hzHvle5BL7x3kza2htGm+iOqO7Y=

+ 0 - 7
src/main/resources/application-zxx.properties

@@ -1,7 +0,0 @@
-db.center.config=D5kuyMmd1C++mkDmCXFMZU65t6BHp0jAIsuh3CkRE7TIvwgJ5vChcsUyID+vxfjoxzoaaPrYjLxqKMR4uXuYquOqIAqDo53OLWKTjNCqJXE8q75YtDInWbadB70F7CzQorW4SXWuP9Ygd1Qv0ngkndDygcWHhVH/mFxbDaJ0RhMqHedKveyijxuzICn6iVnAwzoT5w9QkL2zFgeTQfnwXOgkh7FS4hSBlDH6Qn94o4dCVeBgVxH9eyDds3nImipjaY4tmvH8dRsNQ8CY7d0+ooATgj5s9ldJP1/nh+K7cSBgHV1r/R1S4xN/hy9E930kw5OsZqJitSGod05KUDSnUA==
-db.security.config=NiTo3DLO8FFS3zrBHEF2QAn0tSxYjSjjZnL+WnzapLoi5JY0E29jyZpdTR2Ht6gYcDnNBph6xE4no4oKmf76wgpSc8y+rfhOR9RZhauHuQfvoiWzMBtLQrsyJUsQncCxpFzI1Y73SclBkwV3FzoUnXv3j/o1GEven4n8opoPHP5Zkl6pUmjU6f7V5kcCB/w0gaEEbn0GPOg1TanCFUQLzX3P4ZcJOfDugsQ1ulUXqWBoC0Qtwx9ZCYDz66IjNLvKDar5BV84gOrEsWrT/aS8jpI+F59mtLXb6cdbmIxaapSle+jRmrOYDyA8yRqIpPmOAPibySsPbWMd5Xm+n0i6Jg==
-#log.target=B7xSbq4imA5zapX8kEO42mU/5sA2TyF/Ba2Y/++F3z9Np7iT4ywDUkbRC4w/Xrxv1kMSR8PQMJ4dfYwc3mYj0SJJivN5A5/6hI+ZSQBabfZZrYwaIIRdM1XIk4wo1SIrSCXKzef8X6YUH70R2tnh+Uq6KNNp08KaZ2ZXM8vX5Ss=
-server.port=9500
-app.container.code=dev
-app.enable-reset-config=false
-app.security.enable=true

+ 8 - 0
src/main/resources/application-zxx.yml

@@ -0,0 +1,8 @@
+app:
+  container:
+    code: zxx
+db:
+  center:
+    config: D5kuyMmd1C++mkDmCXFMZU65t6BHp0jAIsuh3CkRE7TIvwgJ5vChcsUyID+vxfjoxzoaaPrYjLxqKMR4uXuYquOqIAqDo53OLWKTjNCqJXE8q75YtDInWbadB70F7CzQorW4SXWuP9Ygd1Qv0ngkndDygcWHhVH/mFxbDaJ0RhMqHedKveyijxuzICn6iVnAwzoT5w9QkL2zFgeTQfnwXOgkh7FS4hSBlDH6Qn94o4dCVeBgVxH9eyDds3nImipjaY4tmvH8dRsNQ8CY7d0+ooATgj5s9ldJP1/nh+K7cSBgHV1r/R1S4xN/hy9E930kw5OsZqJitSGod05KUDSnUA==
+  security:
+    config: NiTo3DLO8FFS3zrBHEF2QAn0tSxYjSjjZnL+WnzapLoi5JY0E29jyZpdTR2Ht6gYcDnNBph6xE4no4oKmf76wgpSc8y+rfhOR9RZhauHuQfvoiWzMBtLQrsyJUsQncCxpFzI1Y73SclBkwV3FzoUnXv3j/o1GEven4n8opoPHP5Zkl6pUmjU6f7V5kcCB/w0gaEEbn0GPOg1TanCFUQLzX3P4ZcJOfDugsQ1ulUXqWBoC0Qtwx9ZCYDz66IjNLvKDar5BV84gOrEsWrT/aS8jpI+F59mtLXb6cdbmIxaapSle+jRmrOYDyA8yRqIpPmOAPibySsPbWMd5Xm+n0i6Jg==

+ 0 - 9
src/main/resources/application.properties

@@ -1,9 +0,0 @@
-db.center.config=hLcDKcDr4MgqYdb8j0gF0nF806yUy1UdEp1nmztEdo5rNL8IZliDj7/feOp2Fc7j19m9jtiwFp5nPvClI1Ni4kxluI8MQepS8nBK3bEzRzsGSswNHa/Sjyw0GK9/ZnOaiD+lDQyI7+fVbmpdvkLy7QE07bpTIjdI1tcLx8Z9QWs=
-db.security.config=Jnj84d14EmSgKEXyAbSH+bratWGkpV89/VA5Er4yQOt7qlnKtGYJzBVJNNYMBdmSlW0G+nqDHMhJQcmHrwbjjChYuGeDcmKSRmvFQ9u7LwqmgEfazzKKoVawXmJ40dMsec2yaFyNnCM92xn1hzHvle5BL7x3kza2htGm+iOqO7Y=
-#log.target=B7xSbq4imA5zapX8kEO42mU/5sA2TyF/Ba2Y/++F3z9Np7iT4ywDUkbRC4w/Xrxv1kMSR8PQMJ4dfYwc3mYj0SJJivN5A5/6hI+ZSQBabfZZrYwaIIRdM1XIk4wo1SIrSCXKzef8X6YUH70R2tnh+Uq6KNNp08KaZ2ZXM8vX5Ss=
-server.port=9500
-app.container.code=dev
-spring.profiles.default=${ACTIVE:default}
-app.enable-flyway=false
-app.enable-reset-config=false
-app.security.enable=true

+ 11 - 0
src/main/resources/application.yml

@@ -0,0 +1,11 @@
+app:
+  container:
+    code: dev
+  enable-reset-config: false
+  security:
+    enable: true
+server:
+  port: 9500
+spring:
+  profiles:
+    default: dev

+ 0 - 10
src/main/resources/db/systemset/V1_1__create_system_info_table.sql

@@ -1,10 +0,0 @@
-create table if not exists systeminfo
-(
-    systemid       int auto_increment
-        primary key,
-    keyname        tinytext null,
-    datasourceid   int      null,
-    expression     tinytext null,
-    systemdescribe tinytext null
-);
-

+ 0 - 16
src/main/resources/db/systemset/V1_2__create_service_info_table.sql

@@ -1,16 +0,0 @@
-create table if not exists serviceinfo
-(
-    serviceid            int auto_increment comment '主键'
-        primary key,
-    servicename          tinytext null comment '名称',
-    servicetype          int      null comment '服务类型',
-    containercode        tinytext null comment '运行实例编号',
-    tasktype             int      null comment '定时类型',
-    cronexpress          tinytext null comment '定时器表达式',
-    urilist              tinytext null comment '对外暴露URI列表',
-    nullresultparameters tinytext null comment '空结果请求参数',
-    autonotification     tinytext null comment '成功后自动通知数据源配置(空代表无需通知,非空记录数据源编号)',
-    loopcount            int      null,
-    frequency            int      null comment '频率'
-);
-

+ 0 - 13
src/main/resources/db/systemset/V1_3__create_container_table.sql

@@ -1,13 +0,0 @@
-create table if not exists container
-(
-    containerid       int auto_increment
-        primary key,
-    containercode     tinytext null,
-    containername     tinytext null,
-    containerdescribe tinytext null,
-    requesturi        tinytext null,
-    containervesion   tinytext null,
-    runstate          tinytext null,
-    lasttime          datetime null
-);
-

+ 0 - 8
src/main/resources/db/systemset/V1_4__create_datasource_table.sql

@@ -1,8 +0,0 @@
-create table if not exists datasource
-(
-    datasourceid       int auto_increment
-        primary key,
-    datasourcedescribe tinytext null,
-    connectset         tinytext null,
-    datasourcetype     tinytext null
-);

+ 0 - 9
src/main/resources/db/systemset/V1_5__create_key_alias_table.sql

@@ -1,9 +0,0 @@
-create table if not exists keyalias
-(
-    aliasid       int auto_increment
-        primary key,
-    keyname       tinytext null,
-    aliasname     tinytext null,
-    aliasdescribe tinytext null
-);
-

+ 0 - 12
src/main/resources/db/systemset/V1_6__create_data_cache_table.sql

@@ -1,12 +0,0 @@
-create table if not exists datacache
-(
-    datacacheid       int auto_increment
-        primary key,
-    connectset        text null comment '连接字符串',
-    querysql          text null comment '查询语句',
-    querytable        text null comment '查询表名',
-    effectiveduration int  null comment '缓存时长(秒)',
-    datacachedescribe text null comment '描述'
-)
-    comment '二级缓存配置';
-

+ 0 - 13
src/main/resources/db/systemset/V1_7__create_service_state_table.sql

@@ -1,13 +0,0 @@
-create table if not exists servicestate
-(
-    servicestateid int auto_increment
-        primary key,
-    serviceid      int      null,
-    containerid    int      null,
-    containercode  tinytext null,
-    starttime      datetime null,
-    stoptime       datetime null,
-    runstate       tinytext null,
-    lasttime       datetime null
-);
-

+ 0 - 14
src/main/resources/db/systemset/V1_8__create_algorithm_library_table.sql

@@ -1,14 +0,0 @@
-create table if not exists algorithmlibrary
-(
-    algorithmlibraryid  int auto_increment comment '算法编号'
-        primary key,
-    serviceid           int      null comment '服务编号',
-    algorithmtype       int      null comment '算法类型',
-    computingexpression tinytext null comment '计算表达式',
-    parameterset        tinytext null comment '参数列表',
-    preconditions       tinytext null comment '前置计算条件',
-    executionnumber     int      null comment '事件编号',
-    datasourceid        int      null comment '数据源编号',
-    preparameterset     tinytext null comment '前置条件参数'
-);
-

+ 0 - 8
src/main/resources/db/systemset/V1_9__create_service_type_table.sql

@@ -1,8 +0,0 @@
-create table if not exists servicetype
-(
-    servicetypeid       int auto_increment
-        primary key,
-    servicetypename     tinytext null,
-    servicetypedescribe text     null
-);
-

+ 0 - 45
src/main/resources/db/uniauth/V1_1__create_page_configuration_table.sql

@@ -1,45 +0,0 @@
-create table if not exists pageconfiguration
-(
-    pageconfigurationid          int auto_increment
-        primary key,
-    pagetype                     tinytext not null comment '类型(模块、页面、按钮、Table表格、树、数据项、From表单)',
-    superiorid                   int      null comment '上级编号',
-    pagename                     tinytext not null comment '名称',
-    pagecode                     tinytext not null comment '编码',
-    pagedescribe                 tinytext null comment '描述',
-    serviceid                    int      null comment '绑定服务编号',
-    shortcutkeys                 tinytext null comment '快捷键(核心用于按钮)',
-    openmode                     tinytext null comment '打开方式(新页、弹出或抽屉、同页关联查询)',
-    pageroute                    tinytext null comment '路由',
-    pageaddress                  tinytext null comment '地址',
-    passparameters               tinytext null comment '传递参数',
-    defaultfilter                tinytext null comment '页面打开时的默认查询条件',
-    pageicon                     tinytext null comment '图标',
-    rowbackgroundcolorexpression tinytext null comment '行背景色表达式',
-    rowfontcolorexpression       tinytext null comment '行字体色表达式',
-    datatype                     tinytext null comment '渲染类型',
-    datalength                   int      null comment '数据长度',
-    isdisplay                    int      null comment '是否显示',
-    displaynumber                int      null comment '显示顺序',
-    displaywidth                 int      null comment '显示宽度',
-    backgroundcolorexpression    tinytext null comment '背景色表达式',
-    fontcolorexpression          tinytext null comment '字体色表达式',
-    enablesort                   int      null comment '启用排序功能',
-    enablefilter                 int      null comment '启用过滤功能',
-    enablegroup                  int      null comment '是否分组',
-    enablecount                  int      null comment '启用合计',
-    counttopmost                 int      null comment '合计置顶',
-    isfiltercolumn               int      null comment '是否为查询条件',
-    isprimarykey                 int      null comment '是否主键',
-    defaultparameters            tinytext null comment '默认查询参数',
-    dropdownlist                 tinytext null comment '下来列表(服务编号)',
-    dropdownlistid               tinytext null comment '下来列表键值',
-    dropdownlistlabel            tinytext null comment '下来列表显示名称',
-    isrequired                   int      null comment '是否必填',
-    uniquitytype                 tinytext null comment '唯一性',
-    formatrule                   tinytext null comment '格式校验规则',
-    defaultvalue                 tinytext null comment '默认值',
-    calculationformula           tinytext null comment '计算公式',
-    servicetype                  int      null comment '服务类型'
-);
-

+ 0 - 19
src/main/resources/sql/systemset/add_serviceinfo.sql

@@ -1,19 +0,0 @@
-delete from serviceinfo where serviceid <= 18;
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (1, 'application', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (2, 'pageconfiguration', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (3, 'tableconfiguration', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (4, 'usergroup', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (5, 'userinfo', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (6, 'usergrouppermissions', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (7, 'userpermissions', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (8, 'apiinfo', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (9, 'applicationpermissions', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (10, 'ratelimitrule', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (11, 'container', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (12, 'datasource', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (13, 'servicetype', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (14, 'serviceinfo', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (15, 'algorithmlibrary', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (16, 'systeminfo', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (17, 'keyalias', 1, 'dev', null, null, null, null, null, null, null);
-INSERT INTO serviceinfo (serviceid, servicename, servicetype, containercode, tasktype, cronexpress, urilist,nullresultparameters, autonotification, loopcount, frequency) VALUES (18, 'datacache', 1, 'dev', null, null, null, null, null, null, null);

+ 0 - 63
src/main/resources/sql/uniauth/add_pageconfiguration.sql

@@ -1,63 +0,0 @@
-delete from pageconfiguration where pageconfigurationid<=62;
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '查询统计', 'searchMode', '查询统计', null, null, null, 'searchMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '数据可视化', 'dataVisualizationMode', '数据可视化', null, null, null, 'dataVisualizationMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '基础数据管理', 'basicDataMode', '基础数据管理', null, null, null, 'basicDataMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '系统管理', 'systemAdministrationMode', '系统管理', null, null, null, 'systemAdministrationMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '权限管理', 'permissionsManagementMode', '权限管理', null, null, null, 'permissionsManagementMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('module', 0, '日志管理', 'logManagementMode', '日志管理', null, null, null, 'logManagementMode', null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('page', 5, '界面配置', 'permissionsManagementPage', '界面配置', null, null, null, 'permissionsManagementPage', '/tablePage/index.vue', null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('tree', 7, '界面配置树', 'permissionsManagementTree', '界面配置树', 2, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 8, '名称', 'pagename', '名称', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 8, '编号', 'pageconfigurationid', '编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 8, '上级编号', 'superiorid', '上级编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('table', 7, '界面配置管理表格', 'columnList', '界面配置管理表格', 2, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 1);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '主键', 'pageconfigurationid', '主键编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '类型', 'pagetype', '类型', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '上级编号', 'superiorid', '上级编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '名称', 'pagename', '名称', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '编码', 'pagecode', '编码', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 12, '描述', 'pagedescribe', '描述', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('button', 7, '高级查询', 'advancedQueriesButton', '高级查询按钮', null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('button', 7, '新增', 'addedButton', '新增按钮', null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('form', 20, '编辑表单', 'addedFrom', '新增表单', 2, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, 6);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '类型', 'pagetype', '类型', null, null, null, null, null, null, null, null, null, null, 'SELECT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '上级编号', 'superiorid', '上级编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '名称', 'pagename', '名称', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '编码', 'pagecode', '编码', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '描述', 'pagedescribe', '描述', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '绑定服务编号', 'serviceid', '绑定服务编号', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '快捷键(核心用于按钮)', 'shortcutkeys', '快捷键(核心用于按钮)', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '打开方式(新页、弹出或抽屉、同页关联查询)', 'openmode', '打开方式(新页、弹出或抽屉、同页关联查询)', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '路由', 'pageroute', '路由', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '地址', 'pageaddress', '地址', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '传递参数', 'passparameters', '传递参数', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '页面打开时的默认查询条件', 'defaultfilter', '页面打开时的默认查询条件', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '图标', 'pageicon', '图标', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '行背景色表达式', 'rowbackgroundcolorexpression', '行背景色表达式', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '行字体色表达式', 'rowfontcolorexpression', '行字体色表达式', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '渲染类型', 'datatype', '渲染类型', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '数据长度', 'datalength', '数据长度', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '是否显示', 'isdisplay', '是否显示', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '显示顺序', 'displaynumber', '显示顺序', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '显示宽度', 'displaywidth', '显示宽度', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '背景色表达式', 'backgroundcolorexpression', '背景色表达式', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '字体色表达式', 'fontcolorexpression', '字体色表达式', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '启用排序功能', 'enablesort', '启用排序功能', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '启用过滤功能', 'enablefilter', '启用过滤功能', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '是否分组', 'enablegroup', '是否分组', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '启用合计', 'enablecount', '启用合计', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '合计置顶', 'counttopmost', '合计置顶', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '是否为查询条件', 'isfiltercolumn', '是否为查询条件', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '是否主键', 'isprimarykey', '是否主键', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '默认查询参数', 'defaultparameters', '默认查询参数', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '下来列表(服务编号)', 'dropdownlist', '下来列表(服务编号)', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '下来列表键值', 'dropdownlistid', '下来列表键值', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '下来列表显示名称', 'dropdownlistlabel', '下来列表显示名称', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '是否必填', 'isrequired', '是否必填', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '唯一性', 'uniquitytype', '唯一性', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '格式校验规则', 'formatrule', '格式校验规则', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '默认值', 'defaultvalue', '默认值', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '计算公式', 'calculationformula', '计算公式', null, null, null, null, null, null, null, null, null, null, 'TEXT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('column', 21, '服务类型', 'servicetype', '服务类型', null, null, null, null, null, null, null, null, null, null, 'INT', null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('button', 21, '取消', 'cancelButton', '取消按钮', null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);
-INSERT INTO pageconfiguration (pagetype, superiorid, pagename, pagecode, pagedescribe, serviceid, shortcutkeys, openmode, pageroute, pageaddress, passparameters, defaultfilter, pageicon, rowbackgroundcolorexpression, rowfontcolorexpression, datatype, datalength, isdisplay, displaynumber, displaywidth, backgroundcolorexpression, fontcolorexpression, enablesort, enablefilter, enablegroup, enablecount, counttopmost, isfiltercolumn, isprimarykey, defaultparameters, dropdownlist, dropdownlistid, dropdownlistlabel, isrequired, uniquitytype, formatrule, defaultvalue, calculationformula, servicetype) VALUES ('button', 21, '确认', 'confirmButton', '确认按钮', null, null, null, null, null, null, null, null, null, null, null, null, 1, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null);