// 引入基础包 import { Page, R } from '/@/api/model/baseModel'; // 定义查询参数 export type DictVO = Page & { code?: string; dictValue?: string; }; // 定义字典对象 export interface Dict { id: string; parentId: string; code: string; dictKey: string; dictValue: string; sort: string; remark: string; createTime: string; } // 根据字典对象生成响应模型 export type DictDTO = R;