2023-06-08 14:31:25 +07:00
|
|
|
// ข้อมูลรายการสอบแข่งขัน/คัดเลือก
|
|
|
|
|
interface FormPlacementMainData {
|
2023-06-21 10:35:02 +07:00
|
|
|
id: number;
|
|
|
|
|
examRound: string;
|
|
|
|
|
examOrder: number;
|
|
|
|
|
fiscalYear: number;
|
|
|
|
|
numberofCandidates: number;
|
|
|
|
|
examType: number;
|
|
|
|
|
accountExpirationDate: string;
|
|
|
|
|
isExpired?: boolean;
|
2023-06-08 14:31:25 +07:00
|
|
|
}
|
|
|
|
|
|
2023-06-21 10:35:02 +07:00
|
|
|
interface FormOrderPlacementMainData {
|
|
|
|
|
Order: number;
|
|
|
|
|
OrderNum: string;
|
|
|
|
|
fiscalYear: number;
|
|
|
|
|
OrderDate: string;
|
|
|
|
|
OrderBy: string;
|
|
|
|
|
Signer: string;
|
|
|
|
|
OrderStatus: boolean;
|
|
|
|
|
}
|
2023-06-08 14:31:25 +07:00
|
|
|
|
|
|
|
|
export type { FormPlacementMainData };
|
2023-06-21 10:35:02 +07:00
|
|
|
export type { FormOrderPlacementMainData };
|