รายการชื่อกรรมการ /ประชุม ** กรรมการ รอ api ยังไม่ได้ปรับ ยังเป็น ของวินัย

This commit is contained in:
setthawutttty 2023-12-18 13:51:21 +07:00
parent a0c6c4eb8e
commit 44964b18f8
11 changed files with 1725 additions and 2 deletions

View file

@ -0,0 +1,43 @@
interface DataResponseList {
id: string
rounded: string
title: string
dateStart: Date
dateEnd: Date
}
interface MainList {
id: string
rounded: string
title: string
date: string
}
interface FormData {
rounded: string
dateMeeting: string
consider: string
period: string
file: FileOj[]
}
interface FileOj{
id:string
pathName:string
fileName:string
}
interface FormRef {
rounded: object | null;
dateMeeting: object | null;
consider: object | null;
period: object | null;
[key: string]: any;
}
export type {
DataResponseList,
MainList,
FormData,
FormRef,
FileOj
}