hrms-mgt/src/modules/05_placement/interface/index/SelectOrg.ts

29 lines
595 B
TypeScript
Raw Normal View History

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 };