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.
32 lines
579 B
32 lines
579 B
/** |
|
* @program: kicc-ui |
|
* @description: 文件上传实体类 |
|
* 类型定义 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/8 |
|
*/ |
|
import {CommonEntity, Page, R} from '/@/api/model'; |
|
|
|
// 定义查询参数 |
|
export type DictParams = Page & { |
|
id?:string; |
|
name?:string; |
|
type?:string; |
|
isSys?:string; |
|
status?:string; |
|
|
|
}; |
|
|
|
|
|
// 定义字典对象 |
|
export interface Dict extends CommonEntity{ |
|
id:string; |
|
name:string; |
|
type:string; |
|
isSys:string; |
|
status:string; |
|
} |
|
|
|
|
|
// 根据字典对象生成响应模型 |
|
export type DictResult = R<Dict>;
|
|
|