summaryrefslogtreecommitdiff
path: root/config/VendorTypesColumnsConfig.ts
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-04-28 02:13:30 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-04-28 02:13:30 +0000
commitef4c533ebacc2cdc97e518f30e9a9350004fcdfb (patch)
tree345251a3ed0f4429716fa5edaa31024d8f4cb560 /config/VendorTypesColumnsConfig.ts
parent9ceed79cf32c896f8a998399bf1b296506b2cd4a (diff)
~20250428 작업사항
Diffstat (limited to 'config/VendorTypesColumnsConfig.ts')
-rw-r--r--config/VendorTypesColumnsConfig.ts37
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