get post pu delete

This commit is contained in:
setthawutttty 2024-02-09 13:20:18 +07:00
parent 7623a1e762
commit 16340d9ff5
3 changed files with 113 additions and 130 deletions

View file

@ -20,12 +20,12 @@ interface DataProps {
//ข้อมูล
interface RequestItemsObject {
id: string;
year: string|number;
sick: string;
absence: string;
late: string;
government: string;
study: string;
leaveYear: string|number;
sumRest: string;
sumLate: string;
sumAbsent: string;
sumEducation: string;
sumSick: string;
}
//ข้อมูล
@ -52,12 +52,12 @@ interface Columns {
interface DetailData {
id: string;
sick: string;
absence: string;
late: string;
government: string;
study: string;
year: string|number;
sumSick: string;
sumRest: string;
sumLate: string;
sumAbsent: string;
sumEducation: string;
leaveYear: string|number;
}
export type { RequestItemsObject, Columns, DataProps, RequestItemsTotalObject,DetailData };

View file

@ -14,12 +14,12 @@
interface ResponseObject {
id: string;
year: string|number;
sick: string;
absence: string;
late: string;
government: string;
study: string;
sumSick: string;
sumRest: string;
sumLate: string;
sumAbsent: string;
sumEducation: string;
leaveYear: string|number;
}
interface ResponseTotalObject {