แก้ popup รายการรอบการปฏิบัติงาน

This commit is contained in:
setthawutttty 2023-10-31 16:21:04 +07:00
parent 37a39c6037
commit d10c919b2d
4 changed files with 40 additions and 27 deletions

View file

@ -14,6 +14,18 @@ interface dataRowRound {
status: boolean
isDefault: boolean
}
interface roundShow {
round: string;
am: string;
amOut: string;
pm: string;
pmOut: string;
amRound: string;
pmRound: string;
note: string;
status: boolean;
isDefault: boolean;
}
interface MyObjectRoundRef {
am: object | null,
amOut: object | null,
@ -24,5 +36,6 @@ interface MyObjectRoundRef {
export type {
RoundRows,
dataRowRound,
MyObjectRoundRef
MyObjectRoundRef,
roundShow
};