2023-06-06 14:32:36 +07:00
|
|
|
interface TableName {
|
|
|
|
|
position: string;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface RequestReport2 {
|
|
|
|
|
organizationShortNameId: string;
|
|
|
|
|
organizationOrganizationId: string;
|
|
|
|
|
positionNumId: string;
|
|
|
|
|
positionTypeId: string;
|
|
|
|
|
positionExecutiveId: string;
|
|
|
|
|
positionExecutiveSideId: string;
|
|
|
|
|
positionPathId: string;
|
|
|
|
|
positionPathSideId: string;
|
|
|
|
|
positionLevelId: string;
|
|
|
|
|
status: string | null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type {
|
|
|
|
|
TableName,
|
|
|
|
|
RequestReport2,
|
|
|
|
|
};
|