ผูก API รายการลา (user) *รอ ข้อมูล
This commit is contained in:
parent
8cd87660d8
commit
60ddcf5789
7 changed files with 269 additions and 189 deletions
|
|
@ -1,27 +1,40 @@
|
|||
import type { S } from "@fullcalendar/core/internal-common"
|
||||
import type { S } from "@fullcalendar/core/internal-common";
|
||||
|
||||
interface OptionData {
|
||||
id: string | undefined
|
||||
name: string | undefined
|
||||
id: string | undefined;
|
||||
name: string | undefined;
|
||||
}
|
||||
|
||||
interface FormLeavetMainData {
|
||||
type: string
|
||||
numDate: string
|
||||
extend: string
|
||||
use: string
|
||||
numAll: string
|
||||
numDone: string
|
||||
numNot: string
|
||||
numCancel: string
|
||||
type: string;
|
||||
numDate: string;
|
||||
extend: string;
|
||||
use: string;
|
||||
numAll: string;
|
||||
numDone: string;
|
||||
numNot: string;
|
||||
numCancel: string;
|
||||
}
|
||||
|
||||
interface formListLeaveData {
|
||||
no: string
|
||||
date: string | null
|
||||
type: string
|
||||
status: string
|
||||
year: string
|
||||
no: string;
|
||||
date: string | null;
|
||||
type: string;
|
||||
status: string;
|
||||
year: string;
|
||||
}
|
||||
|
||||
export type { OptionData, FormLeavetMainData, formListLeaveData }
|
||||
interface TypeLeave {
|
||||
code: string;
|
||||
createdAt: Date;
|
||||
createdFullName: string;
|
||||
createdUserId: string;
|
||||
id: string;
|
||||
lastUpdateFullName: string;
|
||||
lastUpdateUserId: string;
|
||||
lastUpdatedAt: Date | null;
|
||||
limit: number;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export type { OptionData, FormLeavetMainData, formListLeaveData, TypeLeave };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue