Merge branch 'develop' into warunee-dev

# Conflicts:
#	src/modules/05_placement/components/PlacementTable.vue
#	src/modules/05_placement/router.ts
This commit is contained in:
Warunee Tamkoo 2023-06-09 09:28:33 +07:00
commit 8d1c124f46
8 changed files with 1109 additions and 219 deletions

View file

@ -1 +1,7 @@
export type {};
interface DataOption {
id: number;
name: string;
}
export type { DataOption };

View file

@ -1 +1,15 @@
export type {};
// ข้อมูลรายการสอบแข่งขัน/คัดเลือก
interface FormPlacementMainData {
id: number;
ExamRound: string;
ExamOrder: number;
FiscalYear: number;
NumberofCandidates: number;
ExamType: number;
AccountExpirationDate: string;
isExpired?: boolean;
}
export type { FormPlacementMainData };