Files
api_directorio/src/edificio/entities/edificio.entity.ts
T

13 lines
263 B
TypeScript
Raw Normal View History

2024-06-17 00:59:28 -06:00
import { Entity, PrimaryColumn, Column } from 'typeorm';
2024-06-16 16:54:06 -06:00
@Entity()
2024-06-17 00:59:28 -06:00
export class Edificio {
2024-06-16 16:54:06 -06:00
2024-06-17 00:59:28 -06:00
@PrimaryColumn({ type: 'int', length:11, nullable: false })
id_edificio: number;
2024-06-16 16:54:06 -06:00
2024-06-17 00:59:28 -06:00
@Column({ type: 'varchar', length: 256, nullable: false })
edificio: string;
}