添加主机身份类型.

This commit is contained in:
lijiahang
2024-04-17 10:11:36 +08:00
parent bc8e04b908
commit 339d86fc87
32 changed files with 350 additions and 118 deletions

View File

@@ -7,6 +7,7 @@ import axios from 'axios';
*/
export interface HostIdentityCreateRequest {
name?: string;
type?: string;
username?: string;
password?: string;
keyId?: number;
@@ -27,6 +28,7 @@ export interface HostIdentityQueryRequest extends Pagination {
searchValue?: string;
id?: number;
name?: string;
type?: string;
username?: string;
keyId?: number;
}
@@ -37,6 +39,7 @@ export interface HostIdentityQueryRequest extends Pagination {
export interface HostIdentityQueryResponse extends TableData {
id: number;
name: string;
type: string;
username: string;
password: string;
keyId: number;