oa_based/src/modules/tools/storage/storage.entity.ts

41 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-02-28 17:02:46 +08:00
import { ApiProperty } from '@nestjs/swagger';
import { Column, Entity } from 'typeorm';
2024-02-28 08:32:35 +08:00
2024-02-28 17:02:46 +08:00
import { CommonEntity } from '~/common/entity/common.entity';
2024-02-28 08:32:35 +08:00
@Entity({ name: 'tool_storage' })
export class Storage extends CommonEntity {
@Column({ type: 'varchar', length: 200, comment: '文件名' })
@ApiProperty({ description: '文件名' })
2024-02-28 17:02:46 +08:00
name: string;
2024-02-28 08:32:35 +08:00
@Column({
type: 'varchar',
length: 200,
nullable: true,
2024-02-29 09:29:03 +08:00
comment: '真实文件名'
2024-02-28 08:32:35 +08:00
})
@ApiProperty({ description: '真实文件名' })
2024-02-28 17:02:46 +08:00
fileName: string;
2024-02-28 08:32:35 +08:00
@Column({ name: 'ext_name', type: 'varchar', nullable: true })
@ApiProperty({ description: '扩展名' })
2024-02-28 17:02:46 +08:00
extName: string;
2024-02-28 08:32:35 +08:00
@Column({ type: 'varchar' })
@ApiProperty({ description: '文件类型' })
2024-02-28 17:02:46 +08:00
path: string;
2024-02-28 08:32:35 +08:00
@Column({ type: 'varchar', nullable: true })
@ApiProperty({ description: '文件类型' })
2024-02-28 17:02:46 +08:00
type: string;
2024-02-28 08:32:35 +08:00
@Column({ type: 'varchar', nullable: true })
@ApiProperty({ description: '文件大小' })
2024-02-28 17:02:46 +08:00
size: string;
2024-02-28 08:32:35 +08:00
@Column({ nullable: true, name: 'user_id' })
@ApiProperty({ description: '用户ID' })
2024-02-28 17:02:46 +08:00
userId: number;
2024-02-28 08:32:35 +08:00
}