2024-03-11 17:48:15 +07:00
|
|
|
interface FormSalaryNew {
|
|
|
|
|
date: Date | null;
|
|
|
|
|
posNo: string;
|
|
|
|
|
templatePos: string;
|
|
|
|
|
position: string;
|
2024-03-27 13:51:34 +07:00
|
|
|
positionLine: string;
|
|
|
|
|
positionPathSide: string;
|
|
|
|
|
positionType: string;
|
|
|
|
|
positionLevel: string;
|
|
|
|
|
positionExecutive: string;
|
|
|
|
|
salary: number | string | null;
|
|
|
|
|
salaryPos: number | string | null;
|
|
|
|
|
salaryCompensation: number | string | null;
|
2024-03-11 17:48:15 +07:00
|
|
|
refCommandNo: string;
|
|
|
|
|
templateDoc: string;
|
|
|
|
|
doc: string;
|
|
|
|
|
}
|
|
|
|
|
|
2024-03-21 16:07:15 +07:00
|
|
|
interface RequestNoPaidObject {
|
|
|
|
|
profileId?: string;
|
|
|
|
|
date: Date | null;
|
|
|
|
|
detail: string;
|
|
|
|
|
reference: string;
|
|
|
|
|
refCommandDate: Date | null;
|
|
|
|
|
refCommandNo: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { FormSalaryNew, RequestNoPaidObject };
|