feat: 用户操作日志.
This commit is contained in:
@@ -35,11 +35,11 @@ export interface HostIdentityQueryRequest extends Pagination {
|
||||
* 主机身份查询响应
|
||||
*/
|
||||
export interface HostIdentityQueryResponse extends TableData {
|
||||
id?: number;
|
||||
name?: string;
|
||||
username?: string;
|
||||
password?: string;
|
||||
keyId?: number;
|
||||
id: number;
|
||||
name: string;
|
||||
username: string;
|
||||
password: string;
|
||||
keyId: number;
|
||||
createTime: number;
|
||||
updateTime: number;
|
||||
creator: string;
|
||||
|
||||
@@ -35,11 +35,11 @@ export interface HostKeyQueryRequest extends Pagination {
|
||||
* 主机秘钥查询响应
|
||||
*/
|
||||
export interface HostKeyQueryResponse extends TableData {
|
||||
id?: number;
|
||||
name?: string;
|
||||
publicKey?: string;
|
||||
privateKey?: string;
|
||||
password?: string;
|
||||
id: number;
|
||||
name: string;
|
||||
publicKey: string;
|
||||
privateKey: string;
|
||||
password: string;
|
||||
createTime: number;
|
||||
updateTime: number;
|
||||
}
|
||||
|
||||
@@ -38,10 +38,10 @@ export interface HostQueryRequest extends Pagination {
|
||||
* 主机查询响应
|
||||
*/
|
||||
export interface HostQueryResponse extends TableData {
|
||||
id?: number;
|
||||
name?: string;
|
||||
code?: string;
|
||||
address?: string;
|
||||
id: number;
|
||||
name: string;
|
||||
code: string;
|
||||
address: string;
|
||||
createTime: number;
|
||||
updateTime: number;
|
||||
creator: string;
|
||||
|
||||
Reference in New Issue
Block a user