🔨 添加描述字段.

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

@@ -1,4 +1,3 @@
import type { SelectOptionData } from '@arco-design/web-vue';
import type { DataGrid, Pagination } from '@/types/global';
import type { TableData } from '@arco-design/web-vue/es/table/interface';
import axios from 'axios';
@@ -19,6 +18,7 @@ export interface HostCreateRequest {
port?: number;
tags?: Array<number>;
groupIdList?: Array<number>;
description?: string;
}
/**
@@ -58,6 +58,7 @@ export interface HostQueryRequest extends Pagination {
status?: string;
tags?: Array<number>;
queryTag?: boolean;
description?: string;
}
/**
@@ -81,6 +82,7 @@ export interface HostQueryResponse extends TableData, HostQueryResponseExtra {
color: string;
tags: Array<{ id: number, name: string }>;
groupIdList: Array<number>;
description: string;
}
/**