remove old sys

This commit is contained in:
Warunee Tamkoo 2024-11-21 13:56:50 +07:00
parent 00db6b6619
commit 1f76194664
254 changed files with 88 additions and 98844 deletions

View file

@ -260,7 +260,7 @@ interface DataProfile {
status: string;
positionType?: string;
positionLevel?: string;
rank: string;
rank?: string | null;
}
interface tableType {

View 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,
};