ทะเบียนประวัติ: ความสามารถพิเศษ API + interface

This commit is contained in:
oat_dev 2024-03-19 10:33:34 +07:00
parent ee6603eaae
commit 7b97178507
3 changed files with 251 additions and 44 deletions

View file

@ -0,0 +1,10 @@
interface RequestItemsObject {
field: string;
detail: string;
remark: string;
reference: string;
}
export type { RequestItemsObject };

View file

@ -0,0 +1,21 @@
//ข้อมูล
interface ResponseObject {
createdAt: Date
createdFullName: string
createdUserId: string
dateStart: Date | null
dateEnd: Date | null
detail: string
field: string
id: string
isActive: boolean
lastUpdateFullName: string
lastUpdateUserId: string
lastUpdatedAt: Date
profileId: string
reference: string
remark: string
}
export type { ResponseObject };