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
47d59500
Commit
47d59500
authored
Feb 03, 2023
by
ma
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://120.77.240.215:9701/tianlai3/ioc_sixiang_license
parents
e6f308ee
76828203
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
5 additions
and
4 deletions
+5
-4
README.md
license/doc/cer/README.md
+0
-0
ca.crt
license/doc/cer/ca.crt
+0
-0
ca.csr
license/doc/cer/ca.csr
+0
-0
ca.key
license/doc/cer/ca.key
+0
-0
ca.srl
license/doc/cer/ca.srl
+0
-0
client.crt
license/doc/cer/client.crt
+0
-0
client.csr
license/doc/cer/client.csr
+0
-0
client.key
license/doc/cer/client.key
+0
-0
client.pem
license/doc/cer/client.pem
+0
-0
client.pkcs8.key
license/doc/cer/client.pkcs8.key
+0
-0
server.crt
license/doc/cer/server.crt
+0
-0
server.csr
license/doc/cer/server.csr
+0
-0
server.key
license/doc/cer/server.key
+0
-0
server.pem
license/doc/cer/server.pem
+0
-0
server.pkcs8.key
license/doc/cer/server.pkcs8.key
+0
-0
update.2022.sql
license/doc/db/update.2022.sql
+0
-0
update.2023.1.sql
license/doc/db/update.2023.1.sql
+5
-4
No files found.
license/doc/
SEC
/README.md
→
license/doc/
cer
/README.md
View file @
47d59500
File moved
license/doc/
SEC
/ca.crt
→
license/doc/
cer
/ca.crt
View file @
47d59500
File moved
license/doc/
SEC
/ca.csr
→
license/doc/
cer
/ca.csr
View file @
47d59500
File moved
license/doc/
SEC
/ca.key
→
license/doc/
cer
/ca.key
View file @
47d59500
File moved
license/doc/
SEC
/ca.srl
→
license/doc/
cer
/ca.srl
View file @
47d59500
File moved
license/doc/
SEC
/client.crt
→
license/doc/
cer
/client.crt
View file @
47d59500
File moved
license/doc/
SEC
/client.csr
→
license/doc/
cer
/client.csr
View file @
47d59500
File moved
license/doc/
SEC
/client.key
→
license/doc/
cer
/client.key
View file @
47d59500
File moved
license/doc/
SEC
/client.pem
→
license/doc/
cer
/client.pem
View file @
47d59500
File moved
license/doc/
SEC
/client.pkcs8.key
→
license/doc/
cer
/client.pkcs8.key
View file @
47d59500
File moved
license/doc/
SEC
/server.crt
→
license/doc/
cer
/server.crt
View file @
47d59500
File moved
license/doc/
SEC
/server.csr
→
license/doc/
cer
/server.csr
View file @
47d59500
File moved
license/doc/
SEC
/server.key
→
license/doc/
cer
/server.key
View file @
47d59500
File moved
license/doc/
SEC
/server.pem
→
license/doc/
cer
/server.pem
View file @
47d59500
File moved
license/doc/
SEC
/server.pkcs8.key
→
license/doc/
cer
/server.pkcs8.key
View file @
47d59500
File moved
license/doc/
update
.sql
→
license/doc/
db/update.2022
.sql
View file @
47d59500
File moved
license/doc/update.2023.1.sql
→
license/doc/
db/
update.2023.1.sql
View file @
47d59500
...
...
@@ -7,7 +7,7 @@ DROP TABLE IF EXISTS `permission`;
CREATE
TABLE
`permission`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`description`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'权限说明'
,
`description`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'权限说明'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
...
...
@@ -22,10 +22,11 @@ CREATE TABLE `user_permission`
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
`update_time`
datetime
DEFAULT
NULL
COMMENT
'更新时间'
,
`deleted`
int
(
1
)
DEFAULT
'0'
COMMENT
'逻辑删除标识 1:删除,0:未删除'
,
UNIQUE
KEY
`user_permission_unique_key`
(
`permission`
,
`user`
),
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
AUTO_INCREMENT
=
0
DEFAULT
CHARSET
=
utf8
COMMENT
=
'用户权限表'
;
--
添加权限
--
--
添加权限
--
INSERT
INTO
`permission`
(
`id`
,
`description`
,
`create_time`
,
`update_time`
,
`deleted`
)
VALUES
(
1
,
'邀请注册'
,
NULL
,
NULL
,
0
);
INSERT
INTO
`permission`
(
`id`
,
`description`
,
`create_time`
,
`update_time`
,
`deleted`
)
...
...
@@ -47,7 +48,7 @@ CREATE TABLE `report_type`
(
`id`
int
(
10
)
NOT
NULL
AUTO_INCREMENT
,
`category`
int
(
1
)
DEFAULT
NULL
COMMENT
'报警大类 1:系统,0:设备'
,
`description`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'说明'
,
`description`
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:未删除'
,
...
...
@@ -62,7 +63,7 @@ CREATE TABLE `report`
`category`
int
(
1
)
DEFAULT
NULL
COMMENT
'报警大类 1:系统,0:设备'
,
`type`
int
(
3
)
DEFAULT
NULL
COMMENT
'报警类型'
,
`sn`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'设备编码(系统报警该值为空)'
,
`description`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'报警说明'
,
`description`
varchar
(
100
)
DEFAULT
NULL
COMMENT
'报警说明'
,
`user_name`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'报警账户'
,
`user_company`
varchar
(
50
)
DEFAULT
NULL
COMMENT
'报警公司'
,
`create_time`
datetime
DEFAULT
NULL
COMMENT
'创建时间'
,
...
...
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