修改配置.

This commit is contained in:
lijiahangmax
2023-09-24 22:08:33 +08:00
parent fdc3bc6147
commit f6dd01f017
13 changed files with 2512 additions and 1290 deletions

View File

@@ -1,5 +1,6 @@
import axios from 'axios';
import { DataGrid, Pagination } from '@/types/global';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 主机身份创建请求
@@ -33,7 +34,7 @@ export interface HostIdentityQueryRequest extends Pagination {
/**
* 主机身份查询响应
*/
export interface HostIdentityQueryResponse {
export interface HostIdentityQueryResponse extends TableData {
id?: number;
name?: string;
username?: string;

View File

@@ -1,5 +1,6 @@
import axios from 'axios';
import { DataGrid, Pagination } from '@/types/global';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 主机秘钥创建请求
@@ -32,7 +33,7 @@ export interface HostKeyQueryRequest extends Pagination {
/**
* 主机秘钥查询响应
*/
export interface HostKeyQueryResponse {
export interface HostKeyQueryResponse extends TableData {
id?: number;
name?: string;
publicKey?: string;

View File

@@ -1,5 +1,6 @@
import axios from 'axios';
import { DataGrid, Pagination } from '@/types/global';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 主机创建请求
@@ -35,7 +36,7 @@ export interface HostQueryRequest extends Pagination {
/**
* 主机查询响应
*/
export interface HostQueryResponse {
export interface HostQueryResponse extends TableData {
id?: number;
name?: string;
code?: string;

View File

@@ -1,4 +1,5 @@
import axios from 'axios';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 菜单创建请求
@@ -35,7 +36,7 @@ export interface MenuQueryRequest {
/**
* 菜单查询响应
*/
export interface MenuQueryResponse {
export interface MenuQueryResponse extends TableData {
id?: number;
parentId?: number;
name?: string;

View File

@@ -1,5 +1,6 @@
import axios from 'axios';
import { DataGrid, Pagination } from '@/types/global';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 角色创建请求
@@ -38,7 +39,7 @@ export interface RoleQueryRequest extends Pagination {
/**
* 角色查询响应
*/
export interface RoleQueryResponse {
export interface RoleQueryResponse extends TableData {
id?: number;
name?: string;
code?: string;

View File

@@ -1,5 +1,6 @@
import axios from 'axios';
import { DataGrid, Pagination } from '@/types/global';
import { TableData } from '@arco-design/web-vue/es/table/interface';
/**
* 用户创建请求
@@ -42,7 +43,7 @@ export interface UserQueryRequest extends Pagination {
/**
* 用户查询响应
*/
export interface UserQueryResponse {
export interface UserQueryResponse extends TableData {
id?: number;
username?: string;
nickname?: string;