เลือกหน่วยงานที่รับบรรจุ
This commit is contained in:
parent
998e654eb4
commit
a8a4b1ee60
8 changed files with 933 additions and 7 deletions
28
src/modules/05_placement/interface/index/SelectOrg.ts
Normal file
28
src/modules/05_placement/interface/index/SelectOrg.ts
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
interface DataPositionNo {
|
||||
id: string;
|
||||
isPosition: boolean;
|
||||
posMasterNo: string;
|
||||
positionName: string;
|
||||
posTypeName: string;
|
||||
posLevelName: string;
|
||||
positionIsSelected: string | null;
|
||||
isSit: boolean;
|
||||
positions: Positions[];
|
||||
}
|
||||
|
||||
interface Positions {
|
||||
id: string;
|
||||
posExecutiveId: string;
|
||||
posExecutiveName: string;
|
||||
posLevelId: string;
|
||||
posLevelName: string;
|
||||
posTypeId: string;
|
||||
posTypeName: string;
|
||||
positionArea: string;
|
||||
positionExecutiveField: string;
|
||||
positionField: string;
|
||||
positionIsSelected: boolean;
|
||||
positionName: string;
|
||||
}
|
||||
|
||||
export type { DataPositionNo };
|
||||
Loading…
Add table
Add a link
Reference in a new issue