แก้ไข ui /เพิ่ม api
This commit is contained in:
parent
d8d824019f
commit
1c85df96fd
4 changed files with 143 additions and 45 deletions
|
|
@ -1,43 +1,40 @@
|
|||
interface DataResponseList {
|
||||
id: string
|
||||
rounded: string
|
||||
title: string
|
||||
dateStart: Date
|
||||
dateEnd: Date
|
||||
id: string;
|
||||
rounded: string;
|
||||
title: string;
|
||||
dateStart: Date;
|
||||
dateEnd: Date;
|
||||
}
|
||||
|
||||
interface MainList {
|
||||
id: string
|
||||
rounded: string
|
||||
title: string
|
||||
date: string
|
||||
id: string;
|
||||
rounded: string;
|
||||
title: string;
|
||||
date: string;
|
||||
}
|
||||
|
||||
interface FormData {
|
||||
rounded: string
|
||||
dateMeeting: string
|
||||
consider: string
|
||||
period: string
|
||||
file: FileOj[]
|
||||
rounded: string;
|
||||
dateMeeting: string;
|
||||
dateMeetingStart: Date | null;
|
||||
dateMeetingEnd: Date | null;
|
||||
consider: string;
|
||||
period: string;
|
||||
title: string;
|
||||
file: FileOj[];
|
||||
}
|
||||
|
||||
interface FileOj{
|
||||
id:string
|
||||
pathName:string
|
||||
fileName:string
|
||||
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;
|
||||
rounded: object | null;
|
||||
dateMeeting: object | null;
|
||||
consider: object | null;
|
||||
period: object | null;
|
||||
[key: string]: any;
|
||||
}
|
||||
export type {
|
||||
DataResponseList,
|
||||
MainList,
|
||||
FormData,
|
||||
FormRef,
|
||||
FileOj
|
||||
}
|
||||
export type { DataResponseList, MainList, FormData, FormRef, FileOj };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue