ทะเบียนประวัติ
This commit is contained in:
parent
1915c25dbf
commit
023acccf02
7 changed files with 316 additions and 137 deletions
|
|
@ -0,0 +1,18 @@
|
|||
interface DataActing {
|
||||
dateStart: null | Date;
|
||||
dateEnd: null | Date;
|
||||
posNo: string;
|
||||
position: string;
|
||||
status: boolean;
|
||||
}
|
||||
|
||||
interface DatAssistance {
|
||||
dateStart: Date | null;
|
||||
dateEnd: Date | null;
|
||||
agency: string;
|
||||
commandNo: string;
|
||||
document: string;
|
||||
isUpload: boolean;
|
||||
}
|
||||
|
||||
export type { DataActing, DatAssistance };
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue