23 lines
407 B
TypeScript
23 lines
407 B
TypeScript
interface ResGroup {
|
|
id: string;
|
|
posLevels: ResLevel[];
|
|
posTypeName: string;
|
|
posTypeRank: number;
|
|
posTypeShortName: string;
|
|
}
|
|
|
|
interface ResLevel {
|
|
id: string;
|
|
posLevelName: number;
|
|
posTypeName: string;
|
|
posTypeId: string;
|
|
posLevelAuthority: string;
|
|
}
|
|
|
|
interface ResListProject {
|
|
id: string;
|
|
projectName: string;
|
|
year: number;
|
|
}
|
|
|
|
export type { ResGroup, ResLevel, ResListProject };
|