37 lines
797 B
TypeScript
37 lines
797 B
TypeScript
|
|
interface ResActingPosData {
|
||
|
|
createdAt: string;
|
||
|
|
createdFullName: string;
|
||
|
|
createdUserId: string;
|
||
|
|
dateEnd: Date | null;
|
||
|
|
dateStart: Date | null;
|
||
|
|
id: string;
|
||
|
|
lastUpdateFullName: string;
|
||
|
|
lastUpdateUserId: string;
|
||
|
|
lastUpdatedAt: string;
|
||
|
|
posNo: string;
|
||
|
|
position: string;
|
||
|
|
profileEmployeeId: string;
|
||
|
|
profileId: string;
|
||
|
|
status: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ResAssistanceData {
|
||
|
|
agency: string;
|
||
|
|
commandNo: string;
|
||
|
|
createdAt: Date | null;
|
||
|
|
createdFullName: string;
|
||
|
|
createdUserId: string;
|
||
|
|
dateEnd: Date | null;
|
||
|
|
dateStart: Date | null;
|
||
|
|
document: string;
|
||
|
|
id: string;
|
||
|
|
isUpload: false;
|
||
|
|
lastUpdateFullName: string;
|
||
|
|
lastUpdateUserId: string;
|
||
|
|
lastUpdatedAt: string;
|
||
|
|
profileEmployeeId: string;
|
||
|
|
profileId: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type { ResActingPosData, ResAssistanceData };
|