2023-06-06 14:32:36 +07:00
|
|
|
interface TableName {
|
2023-06-07 13:42:11 +07:00
|
|
|
position: number;
|
2023-06-06 14:32:36 +07:00
|
|
|
Name: string;
|
|
|
|
|
ExamOrder: number;
|
|
|
|
|
Unit: string;
|
|
|
|
|
ReportingDate: string; //วันที่รายงานตัว
|
|
|
|
|
BMAOfficer: boolean;
|
|
|
|
|
Status: string;
|
2023-06-06 18:01:56 +07:00
|
|
|
checkList: any;
|
2023-06-06 16:31:23 +07:00
|
|
|
|
2023-06-06 14:32:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export type {
|
|
|
|
|
TableName,
|
2023-06-07 13:42:11 +07:00
|
|
|
|
2023-06-06 14:32:36 +07:00
|
|
|
};
|