เพิ่ม isUploadAttachment

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2025-01-06 16:24:22 +07:00
parent 75ea2cc155
commit 222bc2ef9f
4 changed files with 109 additions and 46 deletions

View file

@ -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,
};