feat(receive): add input rank

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-05-07 10:40:58 +07:00
parent 29b45f77ea
commit 0739f2b9d7
3 changed files with 132 additions and 11 deletions

View file

@ -7,6 +7,7 @@ interface InformationOps {
religionOps: DataOption[];
employeeClassOps: DataOption[];
employeeTypeOps: DataOption[];
rankOps: DataOption[];
}
//ข้อมูลส่วนตัว
@ -63,6 +64,7 @@ interface FormAddPerson {
employeeType: string | null;
employeeClass: string | null;
profileType: string | null;
rank?: string;
}
const defaultInformation: Information = {
@ -83,6 +85,7 @@ const defaultInformation: Information = {
employeeType: null,
employeeClass: null,
profileType: null,
rank: null,
};
export { defaultInformation };