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

69 lines
1.4 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ApiProperty } from '@nestjs/swagger';
import { ArrayNotEmpty, IsArray, IsOptional, IsString } from 'class-validator';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { PagerDto } from '~/common/dto/pager.dto';
2024-02-28 08:32:35 +08:00
export class StoragePageDto extends PagerDto {
@ApiProperty({ description: '文件名' })
@IsOptional()
@IsString()
2024-02-28 17:02:46 +08:00
name: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件后缀' })
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
extName: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件类型' })
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
type: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '大小' })
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
size: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '上传时间' })
@IsOptional()
2024-02-28 17:02:46 +08:00
time: string[];
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '上传者' })
@IsString()
@IsOptional()
2024-02-28 17:02:46 +08:00
username: string;
2024-02-28 08:32:35 +08:00
}
export class StorageCreateDto {
@ApiProperty({ description: '文件名' })
@IsString()
2024-02-28 17:02:46 +08:00
name: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '真实文件名' })
@IsString()
2024-02-28 17:02:46 +08:00
fileName: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件扩展名' })
@IsString()
2024-02-28 17:02:46 +08:00
extName: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件路径' })
@IsString()
2024-02-28 17:02:46 +08:00
path: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件路径' })
@IsString()
2024-02-28 17:02:46 +08:00
type: string;
2024-02-28 08:32:35 +08:00
@ApiProperty({ description: '文件大小' })
@IsString()
2024-02-28 17:02:46 +08:00
size: string;
2024-02-28 08:32:35 +08:00
}
export class StorageDeleteDto {
@ApiProperty({ description: '需要删除的文件ID列表', type: [Number] })
@IsArray()
@ArrayNotEmpty()
2024-02-28 17:02:46 +08:00
ids: number[];
2024-02-28 08:32:35 +08:00
}