Merge branch 'develop' into develop-tee

This commit is contained in:
setthawutttty 2023-07-10 09:04:12 +07:00
commit 8bba6bf7c9
37 changed files with 3414 additions and 1050 deletions

View file

@ -23,5 +23,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 };