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

35 lines
720 B
TypeScript
Raw Normal View History

2023-06-06 14:32:36 +07:00
interface TableName {
2023-06-12 09:42:31 +07:00
profileID: string;
2023-06-07 13:42:11 +07:00
position: number;
2023-06-12 09:42:31 +07:00
fullName: string;
dateOfBirth: string;
gender: string;
2023-06-06 14:32:36 +07:00
ExamOrder: number;
unitId: string;
UnitGroup: string;
2023-06-06 14:32:36 +07:00
Unit: string;
ReportingDate: string; //วันที่รายงานตัว
2023-06-26 16:34:41 +07:00
BMAOfficer: string;
2023-06-06 14:32:36 +07:00
Status: string;
2023-06-06 18:01:56 +07:00
checkList: any;
2023-06-12 09:42:31 +07:00
address: string;
university: string;
degree: string;
major: string;
remark: string;
number: number;
examCount: number;
scoreResult: {
2023-06-26 16:34:41 +07:00
scoreAFull: number;
scoreA: number;
scoreBFull: number;
scoreB: number;
scoreCFull: number;
scoreC: number;
scoreSumFull: number;
scoreSum: number;
examResult: string;
2023-06-12 09:42:31 +07:00
};
}
2023-06-06 14:32:36 +07:00
export type { TableName };