🔨 查询字段.

This commit is contained in:
lijiahangmax
2025-03-21 00:05:04 +08:00
parent 819520ef73
commit b3009bb65e
10 changed files with 37 additions and 23 deletions

View File

@@ -39,6 +39,10 @@ export interface DictKeyQueryResponse extends TableData {
valueType: string;
extraSchema: string;
description: string;
createTime: number;
updateTime: number;
creator: string;
updater: string;
}
/**

View File

@@ -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;