แก้คำ

This commit is contained in:
setthawutttty 2025-02-04 15:13:46 +07:00
parent 3b1c883c8e
commit 00cd6e18f2
6 changed files with 167 additions and 24 deletions

View file

@ -1,6 +1,8 @@
interface RequestItemsObject {
profileId?: string;
profileEmployeeId?: string;
period?: string|null;
year?: number|null;
name: string;
date: Date | null;
point1: number;
@ -11,4 +13,8 @@ interface RequestItemsObject {
pointSumTotal: number;
}
export type { RequestItemsObject };
interface DataOptions{
id:string
name:string
}
export type { RequestItemsObject,DataOptions };

View file

@ -16,6 +16,8 @@ interface ResponseObject {
pointSum: number;
pointSumTotal: number;
profileId: string;
year: number|null;
period: string|null;
}
export type { ResponseObject };