รายการสอบแข่งขัน / คัดเลือก => Done

This commit is contained in:
watcharanondh 2023-06-08 14:31:25 +07:00
parent 0be28f93f6
commit ccf9aa86ab
4 changed files with 177 additions and 55 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 };