You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
create table log_options_module_name |
|
( |
|
id bigint primary key auto_increment, |
|
module_name varchar(50) null comment '功能模块', |
|
sort int comment '排序', |
|
create_time datetime default CURRENT_TIMESTAMP null comment '创建时间', |
|
update_time datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP comment '更新时间', |
|
is_deleted tinyint default 0 null comment '逻辑删除 (0 可用 1 删除)' |
|
); |
|
|
|
insert into log_options_module_name(module_name, sort) |
|
values ('集中监控', 1), |
|
('综合调度', 2), |
|
('视频集中监控', 3), |
|
('实时监控', 4), |
|
('视频监控', 5), |
|
('演示大屏', 6), |
|
('生态监控', 7), |
|
('数据分析', 9), |
|
('数据查询', 10), |
|
('通讯告警统计', 11), |
|
('气象监测', 12), |
|
('我的事务', 13), |
|
('值班管理', 14), |
|
('缺陷管理', 15), |
|
('两票管理', 16), |
|
('巡检管理', 17), |
|
('日常维护', 18), |
|
('检修管理', 19), |
|
('数据填报', 20), |
|
('安全管理', 21), |
|
('设备管理', 22), |
|
('资产管理', 23), |
|
('智能诊断', 24), |
|
('生产月报', 25), |
|
('告警配置', 26), |
|
('电站安全标准', 27), |
|
('站点管理', 28), |
|
('实时画面', 29), |
|
('资源配置', 30), |
|
('消息管理', 31), |
|
('移动端配置', 32), |
|
('水电站设置', 33), |
|
('告警配置', 34);
|
|
|