ข้อมูลทะเบียนประวัติ => test

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-07 13:46:12 +07:00
parent e9fd48f7f3
commit e5c730875f
5 changed files with 500 additions and 17 deletions

View file

@ -0,0 +1,6 @@
interface RangeYear {
min: number;
max: number;
}
export type { RangeYear };

View file

@ -0,0 +1,15 @@
interface DataType {
id: string;
posLevels: any;
posTypeName: string;
posTypeRank: number;
}
interface DataLevel {
id: string;
posLevelAuthority: string | null;
posLevelName: string;
posLevelRank: number;
}
export type { DataType, DataLevel };