hrms-mgt/src/modules/04_registryNew/interface/response/Main.ts

27 lines
457 B
TypeScript
Raw Normal View History

interface DataType {
id: string;
posLevels: any;
posTypeName: string;
posTypeRank: number;
}
interface DataLevel {
id: string;
posLevelAuthority: string | null;
posLevelName: string;
posLevelRank: number;
}
interface DataPerson {
citizenId: string;
firstName: string;
id: string;
lastName: string;
posLevelId: string;
posTypeId: string;
position: string;
prefix: string;
}
export type { DataType, DataLevel, DataPerson };