28 lines
595 B
TypeScript
28 lines
595 B
TypeScript
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 };
|