feat: mysql 与应用商店联调

This commit is contained in:
ssongliu
2022-10-25 18:34:33 +08:00
committed by ssongliu
parent 0757684111
commit 325bb7bb5f
13 changed files with 520 additions and 215 deletions

View File

@@ -1,4 +1,9 @@
import { ReqPage } from '.';
export namespace Database {
export interface Search extends ReqPage {
version: string;
}
export interface MysqlDBInfo {
id: number;
createdAt: Date;
@@ -9,6 +14,12 @@ export namespace Database {
permission: string;
description: string;
}
export interface BaseInfo {
name: string;
port: number;
password: string;
remoteConn: boolean;
}
export interface MysqlDBCreate {
name: string;
version: string;
@@ -74,6 +85,7 @@ export namespace Database {
}
export interface ChangeInfo {
id: number;
version: string;
operation: string;
value: string;
}