2024-02-28 17:02:46 +08:00
|
|
|
import { MultipartFile } from '@fastify/multipart';
|
|
|
|
import { ApiProperty } from '@nestjs/swagger';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
import { IsDefined } from 'class-validator';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
2024-02-28 17:02:46 +08:00
|
|
|
import { IsFile } from './file.constraint';
|
2024-02-28 08:32:35 +08:00
|
|
|
|
|
|
|
export class FileUploadDto {
|
|
|
|
@ApiProperty({ type: Buffer, format: 'binary', description: '文件' })
|
|
|
|
@IsDefined()
|
|
|
|
@IsFile(
|
|
|
|
{
|
2024-02-28 17:02:46 +08:00
|
|
|
mimetypes: ['image/png', 'image/gif', 'image/jpeg', 'image/webp', 'image/svg+xml'],
|
2024-02-28 08:32:35 +08:00
|
|
|
fileSize: 1024 * 1024 * 10,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
message: '文件类型不正确',
|
2024-02-28 17:02:46 +08:00
|
|
|
}
|
2024-02-28 08:32:35 +08:00
|
|
|
)
|
2024-02-28 17:02:46 +08:00
|
|
|
file: MultipartFile;
|
2024-02-28 08:32:35 +08:00
|
|
|
}
|