🔨 添加描述字段.

This commit is contained in:
lijiahang
2025-01-17 09:56:30 +08:00
parent a217b95783
commit 56ece9c854
41 changed files with 360 additions and 97 deletions

View File

@@ -11,6 +11,7 @@ export interface HostKeyCreateRequest {
publicKey?: string;
privateKey?: string;
password?: string;
description?: string;
}
/**
@@ -30,6 +31,7 @@ export interface HostKeyQueryRequest extends Pagination {
name?: string;
publicKey?: string;
privateKey?: string;
description?: string;
}
/**
@@ -41,8 +43,11 @@ export interface HostKeyQueryResponse extends TableData {
publicKey: string;
privateKey: string;
password: string;
description: string;
createTime: number;
updateTime: number;
creator: string;
updater: string;
}
/**