import { FormListsView } from "@/db/schema/vendorData" export interface FormListsColumnConfig { id: keyof FormListsView label: string group?: string excelHeader?: string type?: string } export const formListsColumnsConfig: FormListsColumnConfig[] = [ { id: "projectCode", label: "Project Code", excelHeader: "Project Code", // group: "Basic Info", }, { id: "projectName", label: "Project Name", excelHeader: "Project Name", // group: "Basic Info", }, { id: "formCode", label: "Register ID", excelHeader: "Register ID", // group: "Basic Info", }, { id: "formName", label: "Register Description", excelHeader: "Register Description", // group: "Basic Info", }, { id: "tagTypeLabel", label: "TAG TYPE ID", excelHeader: "TAG TYPE ID", // group: "Basic Info", }, { id: "classLabel", label: "Class Description", excelHeader: "Class Description", // group: "Basic Info", }, { id: "ep", label: "EP_ID", excelHeader: "EP_ID", // group: "Basic Info", }, { id: "remark", label: "Remark", excelHeader: "Remark", // group: "Basic Info", }, { id: "createdAt", label: "Created At", excelHeader: "Created At", // group: "Metadata",a }, { id: "updatedAt", label: "Updated At", excelHeader: "Updated At", // group: "Metadata", }, ]