ทะเบียนประวัติ => ตำแหน่งเงินเดือน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-03-11 17:48:15 +07:00
parent 4f4ffa0399
commit f96643cc6c
8 changed files with 1176 additions and 5 deletions

View file

@ -6,5 +6,9 @@ interface DataOption {
id: string;
name: string;
}
interface DataOption2 {
id: number;
name: string;
}
export type { Pagination, DataOption };
export type { Pagination, DataOption, DataOption2 };

View file

@ -0,0 +1,12 @@
interface ObjectSalaryRef {
date: object | null;
posNo: object | null;
position: object | null;
typePosition: object | null;
levelPosition: object | null;
salary: object | null;
doc: object | null;
[key: string]: any;
}
export type { ObjectSalaryRef };

View file

@ -0,0 +1,19 @@
interface FormSalaryNew {
date: Date | null;
posNo: string;
templatePos: string;
position: string;
positionLineName: string;
typePosition: string;
levelPosition: string;
positionPathSideName: string;
positionExecutiveName: string;
salary: number | null;
salaryPos: number | null;
salaryCompensation: number | null;
refCommandNo: string;
templateDoc: string;
doc: string;
}
export type { FormSalaryNew };