更新sql,修改msg表的数据

This commit is contained in:
季圣华 2021-12-10 17:53:02 +08:00
parent 3bca1e6b6d
commit 8e2993fa5e
2 changed files with 3 additions and 1 deletions

View File

@ -599,7 +599,7 @@ CREATE TABLE `jsh_msg` (
-- ----------------------------
-- Records of jsh_msg
-- ----------------------------
INSERT INTO `jsh_msg` VALUES ('2', '标题1', '内容1', '2019-09-10 00:11:39', '类型1', '1', '63', '0');
INSERT INTO `jsh_msg` VALUES ('2', '标题1', '内容1', '2019-09-10 00:11:39', '类型1', '2', '63', '0');
-- ----------------------------
-- Table structure for jsh_organization

View File

@ -1315,9 +1315,11 @@ alter table jsh_unit add ratio_three int(11) DEFAULT NULL COMMENT '比例3' afte
-- 更新菜单名称-进货统计改为采购统计
-- 增加平台配置菜单
-- 给平台配置增加注册启用标记
-- 更新消息表中已有信息的状态
-- --------------------------------------------------------
update jsh_function set name='采购统计' where name='进货统计';
insert into `jsh_function`(`number`, `name`, `parent_number`, `url`, `component`, `state`, `sort`, `enabled`, `type`, `push_btn`, `icon`, `delete_flag`)
values ('000112', '平台配置', '0001', '/system/platform_config', '/system/PlatformConfigList', '\0', '0175', '', '电脑版', '', 'profile', '0');
insert into `jsh_platform_config`(`platform_key`, `platform_key_info`, `platform_value`)
values ('register_flag', '注册启用标记', '1');
update jsh_msg set status='2' where id=2;