2024-03-11 17:48:15 +07:00
|
|
|
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;
|
|
|
|
|
}
|
2024-03-12 11:14:52 +07:00
|
|
|
|
|
|
|
|
interface ObjectReceiveRef {
|
|
|
|
|
date: object | null;
|
|
|
|
|
reference: object | null;
|
|
|
|
|
detail: object | null;
|
|
|
|
|
|
|
|
|
|
[key: string]: any;
|
|
|
|
|
}
|
|
|
|
|
export type { ObjectSalaryRef,ObjectReceiveRef };
|