ผูก API เปลี่ยนแปลงรอบการปฏิบัติงานของผู้ใช้งาน

This commit is contained in:
AnandaTon 2023-11-24 17:28:37 +07:00
parent 3482ec0ae4
commit 1c74095abe
5 changed files with 342 additions and 236 deletions

View file

@ -1,28 +1,34 @@
interface dataPost {
cardId: string
firstName: string
lastName: string
cardId: string;
firstName: string;
lastName: string;
}
interface DataOption {
id: string;
name: string;
}
interface changeRoundEdit {
round: string
date: string
reson: string
effectiveDate: Date | null
round: string;
date: string;
reson: string;
effectiveDate: Date | null;
}
interface MyObjectRoundChangeRef {
round: object | null
effectiveDate: object | null
[key: string]: any;
round: object | null;
effectiveDate: object | null;
[key: string]: any;
}
interface MyObjectRoundChangeMainRef {
cardId:object|null
firstName:object|null
lastName:object|null
[key: string]: any;
cardId: object | null;
firstName: object | null;
lastName: object | null;
[key: string]: any;
}
export type {
dataPost,
changeRoundEdit,
MyObjectRoundChangeRef,
MyObjectRoundChangeMainRef
}
dataPost,
changeRoundEdit,
MyObjectRoundChangeRef,
MyObjectRoundChangeMainRef,
DataOption,
};