ข้อมูลตำแหน่งลูกจ้างประจำ
This commit is contained in:
parent
26c7a66906
commit
c0d0c9232a
12 changed files with 665 additions and 331 deletions
|
|
@ -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 };
|
||||
|
|
@ -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 };
|
||||
|
|
@ -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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue