แก้ไขการแสดงผลกรณีถึงแก่กรรม

This commit is contained in:
Warunee Tamkoo 2023-09-01 18:12:43 +07:00
parent 5555706f20
commit f9d8d9486e
5 changed files with 160 additions and 421 deletions

View file

@ -37,6 +37,7 @@ interface RequestItemsObject {
salaryRef: string;
refCommandNo: string;
// refCommandDate: Date | null;
salaryStatus: string | null;
createdFullName: string;
createdAt: Date;
}
@ -65,6 +66,7 @@ interface RequestItemsEmployee {
salaryClass: string | null;
salaryRef: string | null;
refCommandNo: string;
salaryStatus: string | null;
// refCommandDate: Date | null;
}

View file

@ -27,6 +27,7 @@ interface ResponseObject {
salaryRef: string;
refCommandNo: string;
// refCommandDate: Date | null;
salaryStatus: string | null;
createdFullName: string;
createdAt: Date;
}
@ -55,6 +56,7 @@ interface ResponseObjectEmployee {
salaryClass: string | null;
salaryRef: string | null;
refCommandNo: string;
salaryStatus: string | null;
// refCommandDate: Date | null;
}