From bf9bbd569065ef01327a8696a497c4bd95ce6594 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=A3=E5=9C=A3=E5=8D=8E?= <752718920@qq.com> Date: Thu, 23 Feb 2023 01:21:42 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=99sql=E5=A2=9E=E5=8A=A0=E5=8F=91?= =?UTF-8?q?=E8=B5=B7=E6=B5=81=E7=A8=8B=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jshERP-boot/docs/jsh_erp.sql | 1 + ...3\205\350\257\267\345\213\277\344\275\277\347\224\250.txt" | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/jshERP-boot/docs/jsh_erp.sql b/jshERP-boot/docs/jsh_erp.sql index 820f0174b7..aa90359889 100644 --- a/jshERP-boot/docs/jsh_erp.sql +++ b/jshERP-boot/docs/jsh_erp.sql @@ -710,6 +710,7 @@ INSERT INTO `jsh_platform_config` VALUES ('5', 'bill_print_url', '三联打印 INSERT INTO `jsh_platform_config` VALUES ('6', 'pay_fee_url', '租户续费地址', ''); INSERT INTO `jsh_platform_config` VALUES ('7', 'register_flag', '注册启用标记', '1'); INSERT INTO `jsh_platform_config` VALUES ('8', 'app_activation_code', '手机端激活码', ''); +INSERT INTO `jsh_platform_config` VALUES ('9', 'send_workflow_url', '发起流程地址', ''); -- ---------------------------- -- Table structure for jsh_role diff --git "a/jshERP-boot/docs/\346\225\260\346\215\256\345\272\223\346\233\264\346\226\260\350\256\260\345\275\225-\351\246\226\346\254\241\345\256\211\350\243\205\350\257\267\345\213\277\344\275\277\347\224\250.txt" "b/jshERP-boot/docs/\346\225\260\346\215\256\345\272\223\346\233\264\346\226\260\350\256\260\345\275\225-\351\246\226\346\254\241\345\256\211\350\243\205\350\257\267\345\213\277\344\275\277\347\224\250.txt" index a94599d19d..b2b6bcc26f 100644 --- "a/jshERP-boot/docs/\346\225\260\346\215\256\345\272\223\346\233\264\346\226\260\350\256\260\345\275\225-\351\246\226\346\254\241\345\256\211\350\243\205\350\257\267\345\213\277\344\275\277\347\224\250.txt" +++ "b/jshERP-boot/docs/\346\225\260\346\215\256\345\272\223\346\233\264\346\226\260\350\256\260\345\275\225-\351\246\226\346\254\241\345\256\211\350\243\205\350\257\267\345\213\277\344\275\277\347\224\250.txt" @@ -1428,6 +1428,8 @@ alter table jsh_role add price_limit varchar(50) DEFAULT NULL COMMENT '价格屏 -- by jishenghua -- 给系统参数表增加多级审核开关字段 -- 给用户表增加是否经理字段,默认为否 +-- 给平台配置表增加发起流程地址 -- -------------------------------------------------------- alter table jsh_system_config add multi_level_approval_flag varchar(1) DEFAULT '0' COMMENT '多级审核启用标记,0未启用,1启用' after purchase_by_sale_flag; -alter table jsh_user add leader_flag varchar(1) DEFAULT '0' COMMENT '是否经理,0否,1是' after password; \ No newline at end of file +alter table jsh_user add leader_flag varchar(1) DEFAULT '0' COMMENT '是否经理,0否,1是' after password; +INSERT INTO `jsh_platform_config` (`platform_key`, `platform_key_info`, `platform_value`) VALUES ('send_workflow_url', '发起流程地址', ''); \ No newline at end of file