ข้อมูลตำแหน่งลูกจ้างประจำ

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-14 13:25:35 +07:00
parent 26c7a66906
commit c0d0c9232a
12 changed files with 665 additions and 331 deletions

View file

@ -0,0 +1,15 @@
interface ObjectGroupRef {
posTypeName: object | null;
posTypeShortName: object | null;
posTypeRank: object | null;
[key: string]: any;
}
interface ObjectLevelRef {
posLevelName: object | null;
commander: object | null;
[key: string]: any;
}
export type { ObjectGroupRef, ObjectLevelRef };

View file

@ -0,0 +1,13 @@
interface FrmDataGroup {
posTypeName: string;
posTypeShortName: string;
posTypeRank: number | null;
}
interface FormDataLevel {
posLevelName: number | null;
posTypeName: string | undefined;
commander: string;
}
export type { FrmDataGroup, FormDataLevel };

View file

@ -0,0 +1,16 @@
interface ResGroup {
id: string;
posLevels: ResLevel[];
posTypeName: string;
posTypeRank: number;
}
interface ResLevel {
id: string;
posLevelName: number;
posTypeName: string;
posTypeId: string;
commander: string;
}
export type { ResGroup, ResLevel };