Refactoring code module 01_metadata => 02_position

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-09-05 14:14:15 +07:00
parent 3b9df73811
commit a8d794abe6
15 changed files with 1188 additions and 1436 deletions

View 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 };