commit
This commit is contained in:
15
src/domain/entity/tables/estabreviatura.entity.ts
Normal file
15
src/domain/entity/tables/estabreviatura.entity.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Column, Entity, PrimaryColumn } from "typeorm";
|
||||
|
||||
@Entity("ESTABREVIATURA")
|
||||
export class EstAbreviatura {
|
||||
|
||||
@PrimaryColumn({ name: 'ID' })
|
||||
id: number;
|
||||
|
||||
@Column({ name: 'ABREVIATURA' })
|
||||
abreviatura: string;
|
||||
|
||||
@Column({ name: 'PALAVRA' })
|
||||
palavra: string;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user