25 lines
722 B
TypeScript
25 lines
722 B
TypeScript
/**
|
|
* IncidenteInvolucrado Entity
|
|
* Personas involucradas en incidentes
|
|
*
|
|
* @module HSE
|
|
* @table hse.incidente_involucrados
|
|
* @ddl schemas/03-hse-schema-ddl.sql
|
|
* @rf RF-MAA017-001
|
|
*/
|
|
import { Incidente } from './incidente.entity';
|
|
import { Employee } from '../../hr/entities/employee.entity';
|
|
export type RolInvolucrado = 'lesionado' | 'testigo' | 'responsable';
|
|
export declare class IncidenteInvolucrado {
|
|
id: string;
|
|
incidenteId: string;
|
|
employeeId: string;
|
|
rol: RolInvolucrado;
|
|
descripcionLesion: string;
|
|
parteCuerpo: string;
|
|
diasIncapacidad: number;
|
|
createdAt: Date;
|
|
incidente: Incidente;
|
|
employee: Employee;
|
|
}
|
|
//# sourceMappingURL=incidente-involucrado.entity.d.ts.map
|