erp-construccion-backend/dist/modules/hr/entities/puesto.entity.d.ts

25 lines
597 B
TypeScript

/**
* Puesto Entity
* Catálogo de puestos de trabajo
*
* @module HR
* @table hr.puestos
* @ddl schemas/02-hr-schema-ddl.sql
*/
import { Tenant } from '../../core/entities/tenant.entity';
import { Employee } from './employee.entity';
export declare class Puesto {
id: string;
tenantId: string;
codigo: string;
nombre: string;
descripcion: string;
nivelRiesgo: string;
requiereCapacitacionEspecial: boolean;
activo: boolean;
createdAt: Date;
updatedAt: Date;
tenant: Tenant;
empleados: Employee[];
}
//# sourceMappingURL=puesto.entity.d.ts.map