import { PageInformation } from "@/db/schema/information" export interface InformationColumnConfig { id: keyof PageInformation label: string group?: string excelHeader?: string type?: string } export const informationColumnsConfig: InformationColumnConfig[] = [ { id: "pagePath", label: "페이지 경로", excelHeader: "페이지 경로", }, { id: "pageName", label: "페이지명", excelHeader: "페이지명", }, { id: "informationContent", label: "내용", excelHeader: "내용", }, { id: "attachmentFileName", label: "첨부파일", excelHeader: "첨부파일", }, { id: "isActive", label: "상태", excelHeader: "상태", }, { id: "createdAt", label: "생성일", excelHeader: "생성일", type: "date", }, { id: "updatedAt", label: "수정일", excelHeader: "수정일", type: "date", }, ]