Skip to content

Commit

Permalink
给sql增加发起流程地址
Browse files Browse the repository at this point in the history
  • Loading branch information
jishenghua committed Feb 22, 2023
1 parent ac57394 commit bf9bbd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions jshERP-boot/docs/jsh_erp.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
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', '发起流程地址', '');

0 comments on commit bf9bbd5

Please sign in to comment.