2023-06-08 14:31:25 +07:00
|
|
|
// ข้อมูลรายการสอบแข่งขัน/คัดเลือก
|
|
|
|
|
interface FormPlacementMainData {
|
2023-06-21 10:35:02 +07:00
|
|
|
id: number;
|
2023-07-04 09:41:24 +07:00
|
|
|
name: string;
|
|
|
|
|
round: number;
|
|
|
|
|
year: number;
|
|
|
|
|
number: number;
|
|
|
|
|
placementType: number;
|
|
|
|
|
startDate: string;
|
|
|
|
|
endDate: string;
|
2023-06-21 10:35:02 +07:00
|
|
|
isExpired?: boolean;
|
2023-06-08 14:31:25 +07:00
|
|
|
}
|
|
|
|
|
|
2023-06-21 10:35:02 +07:00
|
|
|
interface FormOrderPlacementMainData {
|
2023-06-21 17:10:26 +07:00
|
|
|
Order: string;
|
2023-06-21 10:35:02 +07:00
|
|
|
OrderNum: string;
|
|
|
|
|
fiscalYear: number;
|
|
|
|
|
OrderDate: string;
|
|
|
|
|
OrderBy: string;
|
|
|
|
|
Signer: string;
|
2023-06-21 17:10:26 +07:00
|
|
|
OrderStatus: string;
|
|
|
|
|
OrderType: string;
|
2023-06-21 10:35:02 +07:00
|
|
|
}
|
2023-06-08 14:31:25 +07:00
|
|
|
|
|
|
|
|
export type { FormPlacementMainData };
|
2023-06-21 10:35:02 +07:00
|
|
|
export type { FormOrderPlacementMainData };
|