plament detail page

This commit is contained in:
Harid Promsri (Bright) 2023-06-12 09:42:31 +07:00
parent d6010bf0f1
commit c098fdd976
3 changed files with 463 additions and 304 deletions

View file

@ -1,7 +1,9 @@
interface TableName {
Id: string;
profileID: string;
position: number;
Name: string;
fullName: string;
dateOfBirth: string;
gender: string;
ExamOrder: number;
unitId: string;
UnitGroup: string;
@ -10,6 +12,24 @@ interface TableName {
BMAOfficer: boolean;
Status: string;
checkList: any;
}
address: string;
university: string;
degree: string;
major: string;
remark: string;
number: number;
examCount: number;
scoreResult: {
scoreAFull:number
scoreA: number;
scoreBFull: number;
scoreB: number;
scoreCFull: number;
scoreC: number;
scoreSumFull: number;
scoreSum: number;
examResult: string;
};
}
export type { TableName };