เพิ่มข้อมูลทะเบียนประวัติ รายการรับโอน
This commit is contained in:
parent
c19d37bcc6
commit
7597f271a6
2 changed files with 616 additions and 108 deletions
|
|
@ -104,6 +104,31 @@ interface FormSalaryNewRef {
|
|||
[key: string]: any;
|
||||
}
|
||||
|
||||
interface FormAddPerson {
|
||||
birthDate: Date | null;
|
||||
prefix: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
citizenId: string;
|
||||
age: string | null;
|
||||
genderId: string | null;
|
||||
bloodId: string | null;
|
||||
nationality: string | null;
|
||||
ethnicity: string | null;
|
||||
statusId: string | null;
|
||||
religionId: string | null;
|
||||
tel: string | null;
|
||||
employeeType: string | null;
|
||||
employeeClass: string | null;
|
||||
profileType: string | null;
|
||||
}
|
||||
|
||||
interface DataType {
|
||||
id: string;
|
||||
posLevels: any;
|
||||
posTypeName: string;
|
||||
posTypeRank: number;
|
||||
}
|
||||
export type {
|
||||
FormSalaryNew,
|
||||
FormSalaryNewRef,
|
||||
|
|
@ -121,4 +146,6 @@ export type {
|
|||
DataOptionLeave,
|
||||
OptionType,
|
||||
OptionLevel,
|
||||
FormAddPerson,
|
||||
DataType,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue