erp-construccion-backend/dist/modules/progress/entities/foto-avance.entity.d.ts

31 lines
866 B
TypeScript

/**
* FotoAvance Entity
* Evidencia fotografica de avances de obra
*
* @module Progress
* @table construction.fotos_avance
* @ddl schemas/01-construction-schema-ddl.sql
*/
import { Tenant } from '../../core/entities/tenant.entity';
import { User } from '../../core/entities/user.entity';
import { AvanceObra } from './avance-obra.entity';
export declare class FotoAvance {
id: string;
tenantId: string;
avanceId: string;
fileUrl: string;
fileName: string | null;
fileSize: number | null;
mimeType: string | null;
description: string | null;
location: string | null;
capturedAt: Date;
createdAt: Date;
createdById: string | null;
deletedAt: Date | null;
deletedById: string | null;
tenant: Tenant;
avance: AvanceObra;
createdBy: User | null;
}
//# sourceMappingURL=foto-avance.entity.d.ts.map