新增端口池相关rest接口

This commit is contained in:
aoshiguchen
2022-08-07 13:07:31 +08:00
parent aa4c518b6e
commit 7ac57eaa78
11 changed files with 500 additions and 6 deletions
@@ -41,13 +41,10 @@ CREATE TABLE IF NOT EXISTS `user_login_record` (
`create_time` INTEGER(20) NOT NULL
);
#
CREATE TABLE IF NOT EXISTS `user_login_record` (
#
CREATE TABLE IF NOT EXISTS `port_pool` (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`user_id` INTEGER NOT NULL,
`ip` varchar(50) NOT NULL,
`token` varchar(50) NOT NULL,
`type` INTEGER(2) NOT NULL,
`port` INTEGER NOT NULL,
`enable` INTEGER(2) NOT NULL,
`update_time` INTEGER(20) NOT NULL,
`create_time` INTEGER(20) NOT NULL