Merge branch 'develop' of github.com:Frappet/hrms-mgt into develop

This commit is contained in:
Warunee Tamkoo 2025-03-11 18:07:48 +07:00
commit 0bf38bb88c
25 changed files with 590 additions and 1251 deletions

View file

@ -97,19 +97,19 @@ interface InsigniasType {
}
interface InsigniasTypeSub {
id:string;
createdAt:Date;
createdUserId:string;
lastUpdatedAt:Date;
lastUpdateUserId:string;
createdFullName:string;
lastUpdateFullName:string;
name:string;
shortName:string;
level:string;
isActive:string;
note:string;
insigniaTypeId:string;
id: string;
createdAt: Date;
createdUserId: string;
lastUpdatedAt: Date;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
name: string;
shortName: string;
level: string;
isActive: string;
note: string;
insigniaTypeId: string;
}
interface ResFileData {
@ -118,6 +118,10 @@ interface ResFileData {
path: string;
pathname: string;
}
interface DataHistory {
[key: string]: string | number | Date | boolean;
}
export type {
Pagination,
DataOption,
@ -132,8 +136,8 @@ export type {
DataOptionEducation,
DataOptionEducationLevel,
Request,
InsigniasType,
InsigniasTypeSub,
ResFileData
ResFileData,
DataHistory,
};

View file

@ -3,8 +3,6 @@ interface RequestItemsObject {
detail: string;
remark: string;
reference: string;
dateStart: Date | null;
dateEnd: Date | null;
profileId: string;
}