37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
/**
|
|
* BitacoraObra Entity
|
|
* Registro diario de bitacora de obra
|
|
*
|
|
* @module Progress
|
|
* @table construction.bitacora_obra
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Fraccionamiento } from '../../construction/entities/fraccionamiento.entity';
|
|
export declare class BitacoraObra {
|
|
id: string;
|
|
tenantId: string;
|
|
fraccionamientoId: string;
|
|
entryDate: Date;
|
|
entryNumber: number;
|
|
weather: string | null;
|
|
temperatureMax: number | null;
|
|
temperatureMin: number | null;
|
|
workersCount: number;
|
|
description: string;
|
|
observations: string | null;
|
|
incidents: string | null;
|
|
registeredById: string;
|
|
createdAt: Date;
|
|
createdById: string | null;
|
|
updatedAt: Date | null;
|
|
updatedById: string | null;
|
|
deletedAt: Date | null;
|
|
deletedById: string | null;
|
|
tenant: Tenant;
|
|
fraccionamiento: Fraccionamiento;
|
|
registeredBy: User;
|
|
createdBy: User | null;
|
|
}
|
|
//# sourceMappingURL=bitacora-obra.entity.d.ts.map
|