sigesp 1.1.66-20250906 → 1.1.67-20250906
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/core/interfaces/RecursosHumanos.mjs +1 -1
- package/esm2020/lib/core/models/SNO/MCargosPersonal.model.mjs +25 -1
- package/fesm2015/sigesp.mjs +24 -0
- package/fesm2015/sigesp.mjs.map +1 -1
- package/fesm2020/sigesp.mjs +24 -0
- package/fesm2020/sigesp.mjs.map +1 -1
- package/lib/core/interfaces/RecursosHumanos.d.ts +12 -0
- package/lib/core/models/SNO/MCargosPersonal.model.d.ts +12 -0
- package/package.json +1 -1
|
@@ -330,6 +330,18 @@ export interface ICargosPersonal {
|
|
|
330
330
|
denestorg?: string;
|
|
331
331
|
despuetra?: string;
|
|
332
332
|
codpuetra?: string;
|
|
333
|
+
id_uniadm?: string;
|
|
334
|
+
id_cencos?: string;
|
|
335
|
+
id_ep1?: string;
|
|
336
|
+
id_ep2?: string;
|
|
337
|
+
id_ep3?: string;
|
|
338
|
+
id_ep4?: string;
|
|
339
|
+
id_ep5?: string;
|
|
340
|
+
estructura?: string;
|
|
341
|
+
coduniadm?: string;
|
|
342
|
+
denuniadm?: string;
|
|
343
|
+
codcencos?: string;
|
|
344
|
+
dencescos?: string;
|
|
333
345
|
}
|
|
334
346
|
export interface IFamiliares {
|
|
335
347
|
id_enterprise: string;
|
|
@@ -43,6 +43,18 @@ export declare class MCargosPersonal extends MBasicModel {
|
|
|
43
43
|
idPuestoTrabajo: number;
|
|
44
44
|
codigoPuestoTrabajo: string;
|
|
45
45
|
descripcionPuestoTrabajo: string;
|
|
46
|
+
codigoUnidadOrganizativa: string;
|
|
47
|
+
denominacionUnidadOrganizativa: string;
|
|
48
|
+
codigoCentroCosto: string;
|
|
49
|
+
denominacionCentroCosto: string;
|
|
50
|
+
estructura: string;
|
|
51
|
+
idUnidadAdministrativa: number;
|
|
52
|
+
idCentroCosto: number;
|
|
53
|
+
idEp1: number;
|
|
54
|
+
idEp2: number;
|
|
55
|
+
idEp3: number;
|
|
56
|
+
idEp4: number;
|
|
57
|
+
idEp5: number;
|
|
46
58
|
constructor(p?: ICargosPersonal);
|
|
47
59
|
dataInterface(): ICargosPersonal;
|
|
48
60
|
}
|