diff options
Diffstat (limited to 'config/VendorTypesColumnsConfig.ts')
| -rw-r--r-- | config/VendorTypesColumnsConfig.ts | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/config/VendorTypesColumnsConfig.ts b/config/VendorTypesColumnsConfig.ts new file mode 100644 index 00000000..6d5889e2 --- /dev/null +++ b/config/VendorTypesColumnsConfig.ts @@ -0,0 +1,37 @@ +import { VendorTypes } from "@/db/schema" + +export interface VendorTypesColumnConfig { + id: keyof VendorTypes + label: string + group?: string + excelHeader?: string + type?: string +} + +export const VendorTypesColumnsConfig: VendorTypesColumnConfig[] = [ + { + id: "nameKo", + label: "업체유형(한글)", + excelHeader: "업체유형(한글)", + // group: "Basic Info", + }, + { + id: "nameEn", + label: "업체유형(영어)", + excelHeader: "업체유형(영어)", + // 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 |
