hrms-mgt/src/modules/04_registryPerson/interface/index/salary.ts
2025-03-18 15:25:08 +07:00

22 lines
452 B
TypeScript

interface RowList {
id: string;
date: Date | null;
reference: string;
detail: string;
refCommandNo: string;
refCommandDate: Date | null;
isUpload: boolean;
}
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 { RowList, ObjectSalaryRef };