เพิ่ม isUploadAttachment
This commit is contained in:
parent
75ea2cc155
commit
222bc2ef9f
4 changed files with 109 additions and 46 deletions
|
|
@ -108,6 +108,27 @@ interface FormDataDetail {
|
|||
isAttachment: boolean;
|
||||
}
|
||||
|
||||
interface DataFile {
|
||||
author: string;
|
||||
category: [];
|
||||
createdAt: string;
|
||||
createdBy: string;
|
||||
description: string;
|
||||
downloadUrl: string;
|
||||
fileName: string;
|
||||
fileSize: number;
|
||||
fileType: string;
|
||||
hidden: boolean;
|
||||
keyword: [];
|
||||
metadata: {};
|
||||
path: string;
|
||||
pathname: string;
|
||||
title: string;
|
||||
updatedAt: string;
|
||||
updatedBy: string;
|
||||
upload: boolean;
|
||||
}
|
||||
|
||||
export type {
|
||||
Pagination,
|
||||
DataOption,
|
||||
|
|
@ -119,4 +140,5 @@ export type {
|
|||
DataFileOrder,
|
||||
FormDataDetail,
|
||||
TabOptions,
|
||||
DataFile,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue