Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
I
ioc_sixiang_license
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zengtianlai3
ioc_sixiang_license
Commits
842385a7
Commit
842385a7
authored
Jan 30, 2023
by
AfirSraftGarrier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
报警相关表
parent
3f6fc03e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
6 deletions
+39
-6
update.sql
license/doc/update.sql
+39
-6
No files found.
license/doc/update.sql
View file @
842385a7
...
...
@@ -65,16 +65,49 @@ VALUES (6, '日志管理', NULL, NULL, 0);
INSERT
INTO
`permission`
(
`id`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
7
,
'安全报警'
,
NULL
,
NULL
,
0
);
--报警表--
CREATE
TABLE
`report`
-- 报警类型表 --
DROP
TABLE
IF
EXISTS
`report_type`
;
CREATE
TABLE
`report_type`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`category`
int
(
1
)
DEFAULT
NULL
COMMENT
'报警大类 1:系统,0:设备'
,
`type`
int
(
3
)
DEFAULT
NULL
COMMENT
'报警小类'
,
`desc`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'报警说明'
,
`done`
int
(
1
)
DEFAULT
'0'
COMMENT
'是否已经完成 1:已完成,0:未完成'
,
`desc`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'说明'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'用户权限表'
;
\ No newline at end of file
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'报警类型表'
;
-- 报警表 --
DROP
TABLE
IF
EXISTS
`report`
;
CREATE
TABLE
`report`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`category`
int
(
1
)
DEFAULT
NULL
COMMENT
'报警大类 1:系统,0:设备'
,
`type`
int
(
3
)
DEFAULT
NULL
COMMENT
'报警类型'
,
`sn`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'设备编码(系统报警该值为空)'
,
`desc`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'报警说明'
,
`user_name`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'报警账户'
,
`user_company`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'报警公司'
,
`done`
int
(
1
)
DEFAULT
'0'
COMMENT
'是否已经处理 1:已处理,0:未处理'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'报警表'
;
-- 新增报警类型 --
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
1
,
1
,
'系统故障'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
2
,
1
,
'系统超负荷'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
3
,
1
,
'系统连接失败'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
4
,
0
,
'数据请求失败'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
5
,
0
,
'卡交互失败'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
6
,
0
,
'鉴权失败'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`report_type`
(
`id`
,
`category`
,
`desc`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
7
,
0
,
'解码失败'
,
NULL
,
NULL
,
0
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment