33 lines
936 B
TypeScript
33 lines
936 B
TypeScript
/**
|
|
* ActaVivienda Entity
|
|
* Viviendas incluidas en actas oficiales
|
|
*
|
|
* @module Infonavit
|
|
* @table infonavit.acta_viviendas
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Acta } from './acta.entity';
|
|
import { OfertaVivienda } from './oferta-vivienda.entity';
|
|
export type ActaViviendaResult = 'pending' | 'approved' | 'rejected' | 'observations';
|
|
export declare class ActaVivienda {
|
|
id: string;
|
|
tenantId: string;
|
|
actaId: string;
|
|
ofertaId: string;
|
|
sequenceNumber: number;
|
|
result: ActaViviendaResult;
|
|
observations: string;
|
|
inspectedAt: Date;
|
|
inspectedById: string;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
updatedAt: Date;
|
|
updatedById: string;
|
|
tenant: Tenant;
|
|
acta: Acta;
|
|
oferta: OfertaVivienda;
|
|
createdBy: User;
|
|
inspectedBy: User;
|
|
}
|
|
//# sourceMappingURL=acta-vivienda.entity.d.ts.map
|