11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
|
|
import {Entity,Column,PrimaryColumn} from "typeorm";
|
||
|
|
|
||
|
|
@Entity()
|
||
|
|
export class edificio{
|
||
|
|
|
||
|
|
@PrimaryColumn()
|
||
|
|
id_edificio:number
|
||
|
|
|
||
|
|
@Column()
|
||
|
|
edificio:string
|
||
|
|
}
|