feat: 组件

This commit is contained in:
2023-07-18 22:06:20 +08:00
parent bb673dfd8a
commit 30a7f03650
14 changed files with 613 additions and 0 deletions

27
types/file.d.ts vendored Normal file
View File

@ -0,0 +1,27 @@
declare interface FileVO {
/**
* 文件VO
*
*/
id?: number
/**
* 文件名称
*
*/
name?: string
/**
* 文件大小(字节)
*
*/
size?: number
/**
* 文件扩展名
*
*/
extension?: string
/**
* 文件url
*
*/
url?: string
}