remove old sys
This commit is contained in:
parent
00db6b6619
commit
1f76194664
254 changed files with 88 additions and 98844 deletions
|
|
@ -260,7 +260,7 @@ interface DataProfile {
|
|||
status: string;
|
||||
positionType?: string;
|
||||
positionLevel?: string;
|
||||
rank: string;
|
||||
rank?: string | null;
|
||||
}
|
||||
|
||||
interface tableType {
|
||||
|
|
|
|||
76
src/modules/05_placement/interface/index/ProfileType.ts
Normal file
76
src/modules/05_placement/interface/index/ProfileType.ts
Normal file
|
|
@ -0,0 +1,76 @@
|
|||
interface InformationOps {
|
||||
prefixOps: DataOption[];
|
||||
prefixOldOps: DataOption[];
|
||||
genderOps: DataOption[];
|
||||
bloodOps: DataOption[];
|
||||
statusOps: DataOption[];
|
||||
religionOps: DataOption[];
|
||||
employeeClassOps: DataOption[];
|
||||
employeeTypeOps: DataOption[];
|
||||
}
|
||||
|
||||
//ข้อมูลส่วนตัว
|
||||
interface Information {
|
||||
cardid: string | null;
|
||||
prefix: string | null;
|
||||
age: string | null;
|
||||
prefixId: string | null;
|
||||
firstname: string | null;
|
||||
lastname: string | null;
|
||||
birthDate: Date | 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;
|
||||
rank?: string | null;
|
||||
}
|
||||
|
||||
interface DataOption {
|
||||
id: string;
|
||||
name: string;
|
||||
zipCode?: string;
|
||||
}
|
||||
|
||||
interface DataOptioninfo {
|
||||
id: string;
|
||||
name: string;
|
||||
}
|
||||
interface DocList {
|
||||
pathName: string;
|
||||
fileName: string;
|
||||
}
|
||||
|
||||
const defaultInformation: Information = {
|
||||
cardid: null,
|
||||
age: null,
|
||||
prefix: null,
|
||||
prefixId: null,
|
||||
firstname: null,
|
||||
lastname: null,
|
||||
birthDate: null,
|
||||
genderId: null,
|
||||
bloodId: null,
|
||||
nationality: null,
|
||||
ethnicity: null,
|
||||
statusId: null,
|
||||
religionId: null,
|
||||
tel: null,
|
||||
employeeType: null,
|
||||
employeeClass: null,
|
||||
profileType: null,
|
||||
};
|
||||
|
||||
export { defaultInformation };
|
||||
export type {
|
||||
Information,
|
||||
DataOption,
|
||||
DataOptioninfo,
|
||||
DocList,
|
||||
InformationOps,
|
||||
};
|
||||
|
|
@ -261,6 +261,7 @@ interface DataProfile {
|
|||
root: string;
|
||||
rootShortName: string | null;
|
||||
status: string;
|
||||
rank?: string | null;
|
||||
}
|
||||
|
||||
export type {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue