ทะเบียนประวัติ: ผลการประเมินปฏิบัติราชการ

This commit is contained in:
puriphatt 2024-03-22 12:49:50 +07:00
parent be0cdd3ca5
commit f3f7bbf5c8
3 changed files with 92 additions and 115 deletions

View file

@ -1,6 +1,5 @@
interface RequestItemsObject {
profileId?: string;
isActive: boolean;
name: string;
date: Date | null;
point1: number;
@ -11,17 +10,4 @@ interface RequestItemsObject {
pointSumTotal: number;
}
interface FormData {
id: string;
isActive: boolean;
name: string;
point1Total: number;
point1: number;
point2Total: number;
point2: number;
pointSumTotal: number;
pointSum: number;
date: Date | null;
}
export type { RequestItemsObject, FormData };
export type { RequestItemsObject };