28 lines
605 B
TypeScript
28 lines
605 B
TypeScript
|
|
interface TableName {
|
||
|
|
position: string;
|
||
|
|
Name: string;
|
||
|
|
ExamOrder: number;
|
||
|
|
Unit: string;
|
||
|
|
ReportingDate: string; //วันที่รายงานตัว
|
||
|
|
BMAOfficer: boolean;
|
||
|
|
Status: string;
|
||
|
|
chackList: any;
|
||
|
|
}
|
||
|
|
|
||
|
|
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,
|
||
|
|
};
|