Skip to content

Instantly share code, notes, and snippets.

@ktutnik
Last active May 3, 2021 03:18
Show Gist options
  • Select an option

  • Save ktutnik/d660abd89d8d8b53f2d8dca0198c643c to your computer and use it in GitHub Desktop.

Select an option

Save ktutnik/d660abd89d8d8b53f2d8dca0198c643c to your computer and use it in GitHub Desktop.
first class entity preview
@genericController()
@Entity()
export class Product {
@PrimaryGeneratedColumn()
id: number;
@Column()
name: string;
@Column()
basePrice: number;
@Column()
price: number;
@Column()
createdBy:User
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment