Refactoring code module 01_metadata => 02_position
This commit is contained in:
parent
3b9df73811
commit
a8d794abe6
15 changed files with 1188 additions and 1436 deletions
15
src/modules/01_metadata/interface/response/position/Main.ts
Normal file
15
src/modules/01_metadata/interface/response/position/Main.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
interface ResPosType {
|
||||
id: string;
|
||||
posTypeName: string;
|
||||
posTypeRank: number;
|
||||
posLevels: PosLevels[];
|
||||
}
|
||||
|
||||
interface PosLevels {
|
||||
id: string;
|
||||
posLevelAuthority: string;
|
||||
posLevelName: string;
|
||||
posLevelRank: number;
|
||||
}
|
||||
|
||||
export type { ResPosType };
|
||||
Loading…
Add table
Add a link
Reference in a new issue