VendureEntity
VendureEntity
This is the base class from which all entities inherit. The type of
the id property is defined by the EntityIdStrategy.
Signature
class VendureEntity {
    constructor(input?: DeepPartial<VendureEntity>)
    @PrimaryGeneratedId()
    id: ID;
    @CreateDateColumn() createdAt: Date;
    @UpdateDateColumn() updatedAt: Date;
}