Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 49x 49x 49x 49x 514x 49x 539x 49x | import {
PrimaryGeneratedColumn,
CreateDateColumn,
UpdateDateColumn,
} from 'typeorm';
import { ApiProperty } from '@nestjs/swagger';
/**
* Base entity class providing common fields for all entities.
* All Repoburg entities inherit from this class.
*/
export abstract class BaseEntity {
@ApiProperty({
description: 'Unique identifier (UUID)',
example: '550e8400-e29b-41d4-a716-446655440000',
format: 'uuid',
})
@PrimaryGeneratedColumn('uuid')
id: string;
@ApiProperty({
description: 'Timestamp when the entity was created',
example: '2024-01-15T10:30:00.000Z',
type: 'string',
format: 'date-time',
})
@CreateDateColumn({ type: 'datetime', default: () => 'CURRENT_TIMESTAMP' })
created_at: Date;
@ApiProperty({
description: 'Timestamp when the entity was last updated',
example: '2024-01-15T12:45:00.000Z',
type: 'string',
format: 'date-time',
})
@UpdateDateColumn({
type: 'datetime',
default: () => 'CURRENT_TIMESTAMP',
onUpdate: 'CURRENT_TIMESTAMP',
})
updated_at: Date;
}
|