123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789 |
- /*
- * Copyright (c) 2022. Pnoker. All Rights Reserved.
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- * http://www.apache.org/licenses/LICENSE-2.0
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- SET NAMES utf8mb4;
- SET FOREIGN_KEY_CHECKS = 0;
- CREATE DATABASE dc3;
- USE dc3;
- -- ----------------------------
- -- Table structure for dc3_tenant
- -- ----------------------------
- drop table if exists dc3_tenant;
- create table dc3_tenant
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- tenant_name varchar(128) default '' not null comment '租户名称',
- tenant_code varchar(128) default '' not null comment '租户编号',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_tenant_name (tenant_name) USING BTREE,
- INDEX idx_tenant_code (tenant_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '租户表';
- -- ----------------------------
- -- Table structure for dc3_user_login
- -- ----------------------------
- drop table if exists dc3_user_login;
- create table dc3_user_login
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- login_name varchar(128) default '' not null comment '登录名称,加密存储',
- user_id bigint default 0 not null comment '用户ID',
- user_password_id bigint default 0 not null comment '用户密码ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_login_name (login_name) USING BTREE,
- INDEX idx_user_id (user_id) USING BTREE,
- INDEX idx_user_password_id (user_password_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '用户登录表';
- -- ----------------------------
- -- Table structure for dc3_user_password
- -- ----------------------------
- drop table if exists dc3_user_password;
- create table dc3_user_password
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- login_password varchar(512) default '' not null comment '登录密码',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除'
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '用户密码表';
- -- ----------------------------
- -- Table structure for dc3_user
- -- ----------------------------
- drop table if exists dc3_user;
- create table dc3_user
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- nick_name varchar(128) default '' not null comment '用户昵称,加密存储',
- user_name varchar(128) default '' not null comment '用户名称,加密存储',
- phone varchar(32) default '' not null comment '手机号,加密存储',
- email varchar(128) default '' not null comment '邮箱,加密存储',
- social_ext json not null comment '社交相关拓展信息,加密存储',
- identity_ext json not null comment '身份相关拓展信息,加密存储',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_nick_name (nick_name) USING BTREE,
- INDEX idx_user_name (user_name) USING BTREE,
- INDEX idx_phone (phone) USING BTREE,
- INDEX idx_email (email) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '用户表';
- -- ----------------------------
- -- Table structure for dc3_tenant_bind
- -- ----------------------------
- drop table if exists dc3_tenant_bind;
- create table dc3_tenant_bind
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- tenant_id bigint default 0 not null comment '租户ID',
- user_id bigint default 0 not null comment '用户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_tenant_id (tenant_id) USING BTREE,
- INDEX idx_user_id (user_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '租户关联表';
- -- ----------------------------
- -- Table structure for dc3_driver
- -- ----------------------------
- drop table if exists dc3_driver;
- create table dc3_driver
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- driver_name varchar(128) default '' not null comment '驱动名称',
- driver_code varchar(128) default '' not null comment '驱动编号',
- service_name varchar(128) default '' not null comment '驱动服务名称',
- service_host varchar(128) default '' not null comment '服务主机',
- driver_type_flag tinyint(4) default 0 not null comment '驱动类型标识',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_driver_name (driver_name) USING BTREE,
- INDEX idx_driver_code (driver_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '协议驱动表';
- -- ----------------------------
- -- Table structure for dc3_driver_attribute
- -- ----------------------------
- drop table if exists dc3_driver_attribute;
- create table dc3_driver_attribute
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- display_name varchar(128) default '' not null comment '显示名称',
- attribute_name varchar(128) default '' not null comment '属性名称',
- attribute_type_flag tinyint(4) default 0 not null comment '属性类型标识',
- default_value varchar(128) default '' not null comment '默认值',
- driver_id bigint default 0 not null comment '驱动ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_driver_id (driver_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '连接配置信息表';
- -- ----------------------------
- -- Table structure for dc3_point_attribute
- -- ----------------------------
- drop table if exists dc3_point_attribute;
- create table dc3_point_attribute
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- display_name varchar(128) default '' not null comment '显示名称',
- attribute_name varchar(128) default '' not null comment '属性名称',
- attribute_type_flag tinyint(4) default 0 not null comment '属性类型标识',
- default_value varchar(128) default '' not null comment '默认值',
- driver_id bigint default 0 not null comment '驱动ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_driver_id (driver_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '模板配置信息表';
- -- ----------------------------
- -- Table structure for dc3_profile
- -- ----------------------------
- drop table if exists dc3_profile;
- create table dc3_profile
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- profile_name varchar(128) default '' not null comment '模板名称',
- profile_code varchar(128) default '' not null comment '模板编号',
- profile_share_flag tinyint(4) default 0 not null comment '模板共享类型标识',
- profile_type_flag tinyint(4) default 0 not null comment '模板类型标识',
- group_id bigint default 0 not null comment '分组ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_profile_name (profile_name) USING BTREE,
- INDEX idx_profile_code (profile_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '设备模板表';
- -- ----------------------------
- -- Table structure for dc3_point
- -- ----------------------------
- drop table if exists dc3_point;
- create table dc3_point
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- point_name varchar(128) default '' not null comment '位号名称',
- point_code varchar(128) default '' not null comment '位号编号',
- point_type_flag tinyint(4) default 0 not null comment '位号类型标识',
- rw_flag tinyint(4) default 0 not null comment '读写标识',
- base_value decimal(15, 6) default 0 not null comment '基础值',
- multiple decimal(15, 6) default 1 not null comment '比例系数',
- value_decimal tinyint(4) default 6 not null comment '数据精度',
- unit varchar(32) default '' not null comment '单位',
- profile_id bigint default 0 not null comment '模板ID',
- alarm_notify_profile_id bigint default 0 not null comment '报警通知模板ID',
- alarm_message_profile_id bigint default 0 not null comment '报警信息模板ID',
- group_id bigint default 0 not null comment '分组ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_point_name (point_name) USING BTREE,
- INDEX idx_point_code (point_code) USING BTREE,
- INDEX idx_profile_id (profile_id) USING BTREE,
- INDEX idx_alarm_notify_profile_id (alarm_notify_profile_id) USING BTREE,
- INDEX idx_alarm_message_profile_id (alarm_message_profile_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '设备位号表';
- -- ----------------------------
- -- Table structure for dc3_device
- -- ----------------------------
- drop table if exists dc3_device;
- create table dc3_device
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- device_name varchar(128) default '' not null comment '设备名称',
- device_code varchar(128) default '' not null comment '设备编号',
- driver_id bigint default 0 not null comment '驱动ID',
- group_id bigint default 0 not null comment '分组ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_device_name (device_name) USING BTREE,
- INDEX idx_device_code (device_code) USING BTREE,
- INDEX idx_driver_id (driver_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '设备表';
- -- ----------------------------
- -- Table structure for dc3_profile_bind
- -- ----------------------------
- drop table if exists dc3_profile_bind;
- create table dc3_profile_bind
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- profile_id bigint default 0 not null comment '模版ID',
- device_id bigint default 0 not null comment '设备ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_profile_id (profile_id) USING BTREE,
- INDEX idx_device_id (device_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '模板-设备关联表';
- -- ----------------------------
- -- Table structure for dc3_driver_attribute_config
- -- ----------------------------
- drop table if exists dc3_driver_attribute_config;
- create table dc3_driver_attribute_config
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- driver_attribute_id bigint default 0 not null comment '驱动配置ID',
- config_value varchar(128) default '' not null comment '驱动配置值',
- device_id bigint default 0 not null comment '设备ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_driver_attribute_id (driver_attribute_id) USING BTREE,
- INDEX idx_device_id (device_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '驱动属性配置表';
- -- ----------------------------
- -- Table structure for dc3_point_attribute_config
- -- ----------------------------
- drop table if exists dc3_point_attribute_config;
- create table dc3_point_attribute_config
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- point_attribute_id bigint default 0 not null comment '位号配置ID',
- config_value varchar(128) default '' not null comment '位号配置值',
- device_id bigint default 0 not null comment '设备ID',
- point_id bigint default 0 not null comment '位号ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_point_attribute_id (point_attribute_id) USING BTREE,
- INDEX idx_device_id (device_id) USING BTREE,
- INDEX idx_point_id (point_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '位号属性配置表';
- -- ----------------------------
- -- Table structure for dc3_alarm_notify_profile
- -- ----------------------------
- drop table if exists dc3_alarm_notify_profile;
- create table dc3_alarm_notify_profile
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- auto_confirm_flag tinyint(4) default 0 not null comment '自动确认标识',
- notify_interval bigint default 0 not null comment '通知间隔,毫秒',
- alarm_notify_ext json not null comment '报警通知拓展信息',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除'
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '报警通知模板表';
- -- ----------------------------
- -- Table structure for dc3_alarm_message_profile
- -- ----------------------------
- drop table if exists dc3_alarm_message_profile;
- create table dc3_alarm_message_profile
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- alarm_title varchar(512) default '' not null comment '报警标题',
- alarm_level tinyint(4) default 0 not null comment '报警等级',
- alarm_content varchar(512) default '' not null comment '报警内容',
- alarm_content_ext json not null comment '报警内容拓展信息',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除'
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '报警信息模板表';
- -- ----------------------------
- -- Table structure for dc3_alarm_rule
- -- ----------------------------
- drop table if exists dc3_alarm_rule;
- create table dc3_alarm_rule
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- point_id bigint default 0 not null comment '位号ID',
- alarm_type_flag tinyint(4) default 0 not null comment '报警类型标识',
- alarm_rule_ext json not null comment '报警规则拓展信息',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_point_id (point_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '报警规则表';
- -- ----------------------------
- -- Table structure for dc3_role
- -- ----------------------------
- drop table if exists dc3_role;
- create table dc3_role
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- parent_role_id bigint default 0 not null comment '角色父级ID',
- role_name varchar(128) default '' not null comment '角色名称',
- role_code varchar(128) default '' not null comment '角色编号',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_parent_role_id (parent_role_id) USING BTREE,
- INDEX idx_role_name (role_name) USING BTREE,
- INDEX idx_role_code (role_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '角色表';
- -- ----------------------------
- -- Table structure for dc3_resource
- -- ----------------------------
- drop table if exists dc3_resource;
- create table dc3_resource
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- parent_resource_id bigint default 0 not null comment '权限资源父级ID',
- resource_name varchar(128) default '' not null comment '权限资源名称',
- resource_code varchar(128) default '' not null comment '权限资源编号',
- resource_type_flag tinyint(4) default 0 not null comment '权限资源类型标识',
- resource_scope_flag tinyint(4) default 0 not null comment '权限资源范围标识',
- entity_id bigint default 0 not null comment '权限资源实体ID',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_parent_resource_id (parent_resource_id) USING BTREE,
- INDEX idx_resource_name (resource_name) USING BTREE,
- INDEX idx_resource_code (resource_code) USING BTREE,
- INDEX idx_entity_id (entity_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '权限资源表';
- -- ----------------------------
- -- Table structure for dc3_role_user_bind
- -- ----------------------------
- drop table if exists dc3_role_user_bind;
- create table dc3_role_user_bind
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- role_id bigint default 0 not null comment '角色ID',
- user_id bigint default 0 not null comment '用户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_role_id (role_id) USING BTREE,
- INDEX idx_user_id (user_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '角色-用户关联表';
- -- ----------------------------
- -- Table structure for dc3_role_resource_bind
- -- ----------------------------
- drop table if exists dc3_role_resource_bind;
- create table dc3_role_resource_bind
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- role_id bigint default 0 not null comment '权限资源ID',
- resource_id bigint default 0 not null comment '权限资源ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_role_id (role_id) USING BTREE,
- INDEX idx_resource_id (resource_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '角色-权限资源关联表';
- -- ----------------------------
- -- Table structure for dc3_api
- -- ----------------------------
- drop table if exists dc3_api;
- create table dc3_api
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- api_type_flag tinyint(4) default 0 not null comment 'Api接口类型标识',
- api_name varchar(128) default '' not null comment 'Api接口名称',
- api_code varchar(256) default '' not null comment 'Api接口编号,一般为URL的MD5编码',
- api_ext json not null comment 'Api接口拓展信息',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_api_name (api_name) USING BTREE,
- INDEX idx_api_code (api_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '接口表';
- -- ----------------------------
- -- Table structure for dc3_menu
- -- ----------------------------
- drop table if exists dc3_menu;
- create table dc3_menu
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- parent_menu_id bigint default 0 not null comment '菜单父级ID',
- menu_type_flag tinyint(4) default 0 not null comment '菜单类型标识',
- menu_name varchar(128) default '' not null comment '菜单名称',
- menu_code varchar(256) default '' not null comment '菜单编号,一般为URL的MD5编码',
- menu_level tinyint(4) default 0 not null comment '菜单层级',
- menu_index tinyint(4) default 0 not null comment '菜单顺序',
- menu_ext json not null comment '菜单拓展信息',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_parent_menu_id (parent_menu_id) USING BTREE,
- INDEX idx_menu_name (menu_name) USING BTREE,
- INDEX idx_menu_code (menu_code) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '菜单表';
- -- ----------------------------
- -- Table structure for dc3_label
- -- ----------------------------
- drop table if exists dc3_label;
- create table dc3_label
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- label_name varchar(128) default '' not null comment '标签名称',
- color varchar(128) default '' not null comment '标签颜色',
- entity_type_flag tinyint(4) default 0 not null comment '实体类型标识',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_label_name (label_name) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '标签表';
- -- ----------------------------
- -- Table structure for dc3_label_bind
- -- ----------------------------
- drop table if exists dc3_label_bind;
- create table dc3_label_bind
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- label_id bigint default 0 not null comment '标签ID',
- entity_id bigint default 0 not null comment '实体ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_label_id (label_id) USING BTREE,
- INDEX idx_entity_id (entity_id) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '标签关联表';
- -- ----------------------------
- -- Table structure for dc3_group
- -- ----------------------------
- drop table if exists dc3_group;
- create table dc3_group
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- parent_group_id bigint default 0 not null comment '父分组ID',
- group_name varchar(128) default '' not null comment '分组名称',
- position int(10) default 0 not null comment '分组排序位置',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_group_id (parent_group_id) USING BTREE,
- INDEX idx_group_name (group_name) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = '分组表';
- -- ----------------------------
- -- Table structure for dc3_black_ip
- -- ----------------------------
- drop table if exists dc3_black_ip;
- create table dc3_black_ip
- (
- id bigint unsigned auto_increment primary key not null comment '主键ID',
- ip varchar(128) default '' not null comment '黑IP',
- enable_flag tinyint(4) default 1 not null comment '使能标识',
- tenant_id bigint default 0 not null comment '租户ID',
- remark varchar(512) default '' not null comment '描述',
- creator_id bigint default 0 not null comment '创建者ID',
- creator_name varchar(128) default '' not null comment '创建者名称',
- create_time datetime default CURRENT_TIMESTAMP(0) not null comment '创建时间',
- operator_id bigint default 0 not null comment '操作者ID',
- operator_name varchar(128) default '' not null comment '操作者名称',
- operate_time datetime default CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) not null comment '操作时间',
- deleted tinyint(4) default 0 not null comment '逻辑删除标识,0:未删除,1:已删除',
- INDEX idx_ip (ip) USING BTREE
- ) engine = InnoDB
- character set = utf8
- collate = utf8_general_ci
- comment = 'Ip黑名单表';
- -- ----------------------------
- -- Records of dc3_tenant
- -- ----------------------------
- INSERT INTO dc3_tenant
- VALUES (1, '', 'default', 1, '租户', 0, 'dc3', '2016-10-01 00:00:00', 0, 'dc3', '2016-10-01 00:00:00', 0);
- -- ----------------------------
- -- Records of dc3_user_login
- -- ----------------------------
- INSERT INTO dc3_user_login
- VALUES (1, 'pnoker', 1, 1, 1, '用户', 0, 'dc3', '2016-10-01 00:00:00', 0, 'dc3', '2016-10-01 00:00:00', 0);
- -- ----------------------------
- -- Records of dc3_user
- -- user: dc3
- -- password: dc3
- -- ----------------------------
- INSERT INTO dc3_user_password
- VALUES (1, '10e339be1130a90dc1b9ff0332abced6', '用户密码', 0, 'dc3', '2016-10-01 00:00:00', 0, 'dc3',
- '2016-10-01 00:00:00', 0);
- -- ----------------------------
- -- Records of dc3_user
- -- ----------------------------
- INSERT INTO dc3_user
- VALUES (1, '张红元', 'pnoker', '18304071393', 'pnokers@icloud.com', '{}', '{}', '用户信息', 0, 'dc3',
- '2016-10-01 00:00:00', 0, 'dc3', '2016-10-01 00:00:00', 0);
- -- ----------------------------
- -- Records of dc3_tenant_bind
- -- ----------------------------
- INSERT INTO dc3_tenant_bind
- VALUES (1, 1, 1, '租户,用户关联', 0, 'dc3', '2016-10-01 00:00:00', 0, 'dc3', '2016-10-01 00:00:00', 0);
- SET FOREIGN_KEY_CHECKS = 1;
|