You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
433 B
23 lines
433 B
// 引入基础包 |
|
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<DictVO>;
|
|
|