hrms-mgt/src/modules/04_registryPerson/interface/index/salary.ts

22 lines
431 B
TypeScript
Raw Normal View History

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