24 lines
514 B
TypeScript
24 lines
514 B
TypeScript
/**
|
|
* Manzana Entity
|
|
* Manzanas (bloques) dentro de una etapa
|
|
*
|
|
* @module Construction
|
|
*/
|
|
import { Etapa } from './etapa.entity';
|
|
import { Lote } from './lote.entity';
|
|
export declare class Manzana {
|
|
id: string;
|
|
tenantId: string;
|
|
etapaId: string;
|
|
code: string;
|
|
name: string;
|
|
totalLots: number;
|
|
createdAt: Date;
|
|
createdBy: string;
|
|
updatedAt: Date;
|
|
updatedBy: string;
|
|
deletedAt: Date;
|
|
etapa: Etapa;
|
|
lotes: Lote[];
|
|
}
|
|
//# sourceMappingURL=manzana.entity.d.ts.map
|