localhost_oa_based/src/modules/tools/storage/storage.modal.ts

28 lines
593 B
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ApiProperty } from '@nestjs/swagger';
2024-02-28 08:32:35 +08:00
export class StorageInfo {
@ApiProperty({ description: '文件ID' })
2024-02-28 17:02:46 +08:00
id: number;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件名' })
2024-02-28 17:02:46 +08:00
name: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件扩展名' })
2024-02-28 17:02:46 +08:00
extName: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件路径' })
2024-02-28 17:02:46 +08:00
path: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件类型' })
2024-02-28 17:02:46 +08:00
type: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '大小' })
2024-02-28 17:02:46 +08:00
size: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '上传时间' })
2024-02-28 17:02:46 +08:00
createdAt: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '上传者' })
2024-02-28 17:02:46 +08:00
username: string;
2024-02-28 08:32:35 +08:00
}