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
454 B
23 lines
454 B
// 过滤项
|
|
export interface Filter {
|
|
key: string // izShow,izUpload...
|
|
value: any // 值
|
|
}
|
|
|
|
// 过滤
|
|
export interface FilterEntity {
|
|
id: string
|
|
name: string // 过滤名称
|
|
createtime: string // 创建时间
|
|
searchname: string // 搜索名称
|
|
favorite: boolean// 是否收藏
|
|
isDefaultFilter: boolean// 默认筛选
|
|
filterList: Filter[] // 过滤项列表
|
|
}
|
|
|
|
// 搜索
|
|
export interface SearchEntity {
|
|
key: string
|
|
label: string
|
|
}
|