hrms-mgt/src/modules/15_development/interface/response/Main.ts

18 lines
308 B
TypeScript
Raw Normal View History

interface ResGroup {
id: string;
posLevels: ResLevel[];
posTypeName: string;
posTypeRank: number;
posTypeShortName: string;
}
interface ResLevel {
id: string;
posLevelName: number;
posTypeName: string;
posTypeId: string;
posLevelAuthority: string;
}
export type { ResGroup, ResLevel };