33 lines
725 B
TypeScript
33 lines
725 B
TypeScript
/**
|
|
* Lote Entity
|
|
* Lotes/Terrenos individuales
|
|
*
|
|
* @module Construction
|
|
*/
|
|
import { Manzana } from './manzana.entity';
|
|
import { Prototipo } from './prototipo.entity';
|
|
export declare class Lote {
|
|
id: string;
|
|
tenantId: string;
|
|
manzanaId: string;
|
|
prototipoId: string;
|
|
code: string;
|
|
officialNumber: string;
|
|
areaM2: number;
|
|
frontM: number;
|
|
depthM: number;
|
|
status: string;
|
|
priceBase: number;
|
|
priceFinal: number;
|
|
buyerId: string;
|
|
saleDate: Date;
|
|
deliveryDate: Date;
|
|
createdAt: Date;
|
|
createdBy: string;
|
|
updatedAt: Date;
|
|
updatedBy: string;
|
|
deletedAt: Date;
|
|
manzana: Manzana;
|
|
prototipo: Prototipo;
|
|
}
|
|
//# sourceMappingURL=lote.entity.d.ts.map
|