hrms-mgt/src/modules/04_registryPerson/interface/request/DeclarationHonor.ts
2024-08-01 12:12:28 +07:00

12 lines
267 B
TypeScript

interface RequestItemsObject {
profileId?: string;
profileEmployeeId?: string;
detail: string;
issueDate: Date | null;
issuer: string;
refCommandDate: Date | null;
refCommandNo: string;
isDate: boolean | string;
}
export type { RequestItemsObject };