后台管理增加字典管理功能
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
// 字典相关类型定义
|
||||
|
||||
export interface Dictionary {
|
||||
id: string
|
||||
dictType: string
|
||||
dictCode: string
|
||||
dictName: string
|
||||
dictValue?: string
|
||||
sortOrder?: number
|
||||
status: number
|
||||
createBy?: string
|
||||
updateBy?: string
|
||||
remarks?: string
|
||||
createTime?: string
|
||||
updateTime?: string
|
||||
}
|
||||
|
||||
export interface DictionaryPageRequest {
|
||||
current: number
|
||||
size: number
|
||||
dictType?: string
|
||||
dictCode?: string
|
||||
dictName?: string
|
||||
status?: number
|
||||
}
|
||||
|
||||
export interface DictionaryCreateRequest {
|
||||
dictType: string
|
||||
dictCode: string
|
||||
dictName: string
|
||||
dictValue?: string
|
||||
sortOrder?: number
|
||||
status: number
|
||||
remarks?: string
|
||||
}
|
||||
|
||||
export interface DictionaryUpdateRequest {
|
||||
id: string
|
||||
dictType: string
|
||||
dictCode: string
|
||||
dictName: string
|
||||
dictValue?: string
|
||||
sortOrder?: number
|
||||
status: number
|
||||
remarks?: string
|
||||
}
|
||||
Reference in New Issue
Block a user