Skip to content

Instantly share code, notes, and snippets.

@Goldziher
Created August 1, 2021 06:38
Show Gist options
  • Save Goldziher/58f4fb271c7d9499c3dc31b7b139ef51 to your computer and use it in GitHub Desktop.
Save Goldziher/58f4fb271c7d9499c3dc31b7b139ef51 to your computer and use it in GitHub Desktop.
Example of abstract class inheriting from BaseEntity
export abstract class AbstractUUIDPrimaryKeyEntity extends BaseEntity {
@PrimaryGeneratedColumn('uuid')
id: string;
@CreateDateColumn()
createdDate: Date;
@UpdateDateColumn()
updatedDate: Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment