From e0dfb55c5457aec489fc084c4567e791b4c65eb1 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Wed, 26 Mar 2025 00:37:41 +0000 Subject: 3/25 까지의 대표님 작업사항 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/formListsColumnsConfig.ts | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 config/formListsColumnsConfig.ts (limited to 'config/formListsColumnsConfig.ts') diff --git a/config/formListsColumnsConfig.ts b/config/formListsColumnsConfig.ts new file mode 100644 index 00000000..1db4e650 --- /dev/null +++ b/config/formListsColumnsConfig.ts @@ -0,0 +1,49 @@ +import { TagTypeClassFormMappings } from "@/db/schema/vendorData" + +export interface FormListsColumnConfig { + id: keyof TagTypeClassFormMappings + label: string + group?: string + excelHeader?: string + type?: string +} + +export const formListsColumnsConfig: FormListsColumnConfig[] = [ + { + id: "formCode", + label: "Form Code", + excelHeader: "Form Code", + // group: "Basic Info", + }, + { + id: "formName", + label: "Form Name", + excelHeader: "Form Name", + // group: "Basic Info", + }, + { + id: "tagTypeLabel", + label: "Tag Type", + excelHeader: "Tag Type", + // group: "Basic Info", + }, + { + id: "classLabel", + label: "Class", + excelHeader: "Class", + // group: "Basic Info", + }, + + { + id: "createdAt", + label: "Created At", + excelHeader: "Created At", + // group: "Metadata",a + }, + { + id: "updatedAt", + label: "Updated At", + excelHeader: "Updated At", + // group: "Metadata", + }, +] \ No newline at end of file -- cgit v1.2.3