123456789101112131415161718192021 |
- declare namespace API {
- type DictItem = {
- createdBy: string
- createdTime: string
- description: string
- dictId: number
- dictType: string
- itemId: number
- label: string
- modifiedBy: string
- modifiedTime: string
- optFlag: string
- remarks: string
- sortOrder: number
- itemValue: string
- [key: string]: any
- }
- /** 字典结果 */
- type DictResult = DictItem[]
- }
|