เพิ่มระบบทดลองงาน

This commit is contained in:
Tanyalak 2023-07-07 17:26:40 +07:00
parent a3905a84b6
commit 79889c9464
9 changed files with 964 additions and 8 deletions

View file

@ -21,5 +21,32 @@ interface FormOrderPlacementMainData {
OrderType: string;
}
interface FormMainProbation {
no: string;
name: string;
position: string;
level: string;
institution: string;
time: string;
status: string;
orderNum: string;
}
interface FormMainProbation2 {
no: string;
name: string;
position: string;
level: string;
institution: string;
}
interface FormProbationDetail {
no: string;
startDate: string;
endDete: string;
intendant: string;
commander: string;
}
export type { FormPlacementMainData };
export type { FormOrderPlacementMainData };
export type { FormMainProbation };
export type { FormMainProbation2 };
export type { FormProbationDetail };