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.
26 lines
585 B
26 lines
585 B
/** |
|
* @program: kicc-ui |
|
* @description: 文件实体类 |
|
* 类型定义 |
|
* @author: entfrm开发团队-王翔 |
|
* @create: 2022/4/8 |
|
*/ |
|
import type { R } from '/#/axios'; |
|
import type { CommonEntity, Page } from '/@/api/common/data/entity'; |
|
|
|
/** 文件查询参数 */ |
|
export type FileParams = Page & File; |
|
|
|
/** 文件对象 */ |
|
export interface File extends CommonEntity { |
|
id: string; |
|
fileName: string; |
|
bucketName: string; |
|
original: string; |
|
type: string; |
|
fileSize: number; |
|
[key: string]: any; |
|
} |
|
|
|
/** 文件响应对象 */ |
|
export type FileResult = R<File[]>;
|
|
|