hrms-mgt/src/modules/05_placement/interface/request/placement.ts

15 lines
309 B
TypeScript
Raw Normal View History

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