UI เพิ่มรายการโครงการ => เป้าหมาย

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-04-02 16:57:48 +07:00
parent 60aea83177
commit 851dd996f7
3 changed files with 115 additions and 18 deletions

View file

@ -8,4 +8,4 @@ interface DataOptionCheckBox {
value: string;
}
export type { DataOption,DataOptionCheckBox };
export type { DataOption, DataOptionCheckBox };

View file

@ -0,0 +1,17 @@
interface ResGroup {
id: string;
posLevels: ResLevel[];
posTypeName: string;
posTypeRank: number;
posTypeShortName: string;
}
interface ResLevel {
id: string;
posLevelName: number;
posTypeName: string;
posTypeId: string;
posLevelAuthority: string;
}
export type { ResGroup, ResLevel };