แก้ไข ขอโอน

This commit is contained in:
Thanit Konmek 2023-08-11 13:29:19 +07:00
parent 6fbc73300c
commit 1dec63fddd
5 changed files with 447 additions and 117 deletions

View file

@ -1,8 +1,10 @@
interface ResponseData {
createdAt: Date;
date: Date;
firstName: string;
id: string;
isActive: boolean;
lastName: string;
organization: string;
organizationPositionOld: string;
posNo: string;
@ -11,9 +13,12 @@ interface ResponseData {
positionLevelOld: string;
positionNumberOld: string;
positionTypeOld: string;
prefix: string;
reason: string;
salary: number;
status: string;
fullname: string;
statustext: string;
}
interface TypeFile {
@ -22,6 +27,7 @@ interface TypeFile {
}
interface ResponseDataDetail {
avataPath: string;
createdAt: Date;
date: Date;
id: string;
@ -33,6 +39,7 @@ interface ResponseDataDetail {
reason: string;
salary: number;
status: string;
fullname: string;
}
export type { ResponseData, ResponseDataDetail, TypeFile };