hrms-admin/src/modules/01_metadata/interface/index/positionEmployee.ts

29 lines
538 B
TypeScript
Raw Normal View History

2024-05-29 17:58:57 +07:00
interface ObjectGroupRef {
posTypeName: object | null;
posTypeShortName: object | null;
posTypeRank: object | null;
[key: string]: any;
}
interface ObjectLevelRef {
posLevelName: object | null;
posLevelAuthority: object | null;
[key: string]: any;
}
interface ObjectPosRef {
posName: object | null;
posTypeName: object | null;
posLevelName: object | null;
[key: string]: any;
}
interface FormQuery {
type: string;
keyword: string;
}
export type { ObjectGroupRef, ObjectLevelRef, ObjectPosRef, FormQuery };