🔨 添加描述字段.

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

@@ -12,6 +12,7 @@ export interface HostIdentityCreateRequest {
username?: string;
password?: string;
keyId?: number;
description?: string;
}
/**
@@ -32,6 +33,7 @@ export interface HostIdentityQueryRequest extends Pagination {
type?: string;
username?: string;
keyId?: number;
description?: string;
}
/**
@@ -44,6 +46,7 @@ export interface HostIdentityQueryResponse extends TableData {
username: string;
password: string;
keyId: number;
description: string;
createTime: number;
updateTime: number;
creator: string;