🔨 查询字段.
This commit is contained in:
@@ -71,6 +71,8 @@ export interface ExecJobQueryResponse extends TableData {
|
||||
execUsername: string;
|
||||
createTime: number;
|
||||
updateTime: number;
|
||||
creator: string;
|
||||
updater: string;
|
||||
hostIdList: Array<number>;
|
||||
hostList: Array<HostQueryResponse>;
|
||||
}
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import type { DataGrid, OrderDirection, Pagination } from '@/types/global';
|
||||
import type { DataGrid, Pagination } from '@/types/global';
|
||||
import type { TableData } from '@arco-design/web-vue';
|
||||
import axios from 'axios';
|
||||
|
||||
/**
|
||||
* 历史归档查询请求
|
||||
*/
|
||||
export interface HistoryValueQueryRequest extends Pagination, OrderDirection {
|
||||
export interface HistoryValueQueryRequest extends Pagination {
|
||||
searchValue?: string;
|
||||
relId?: number;
|
||||
type?: string;
|
||||
|
||||
@@ -39,6 +39,10 @@ export interface DictKeyQueryResponse extends TableData {
|
||||
valueType: string;
|
||||
extraSchema: string;
|
||||
description: string;
|
||||
createTime: number;
|
||||
updateTime: number;
|
||||
creator: string;
|
||||
updater: string;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { OrderDirection, Pagination } from '@/types/global';
|
||||
import type { Pagination } from '@/types/global';
|
||||
import axios from 'axios';
|
||||
|
||||
/**
|
||||
* 系统消息查询请求
|
||||
*/
|
||||
export interface MessageQueryRequest extends Pagination, OrderDirection {
|
||||
export interface MessageQueryRequest extends Pagination {
|
||||
maxId?: number;
|
||||
classify?: string;
|
||||
queryUnread?: boolean;
|
||||
|
||||
Reference in New Issue
Block a user