15 lines
256 B
TypeScript
15 lines
256 B
TypeScript
interface ResPosType {
|
|
id: string;
|
|
posTypeName: string;
|
|
posTypeRank: number;
|
|
posLevels: PosLevels[];
|
|
}
|
|
|
|
interface PosLevels {
|
|
id: string;
|
|
posLevelAuthority: string;
|
|
posLevelName: string;
|
|
posLevelRank: number;
|
|
}
|
|
|
|
export type { ResPosType };
|