summaryrefslogtreecommitdiff
path: root/config/equipClassColumnsConfig.ts
blob: 76b8574410139b03f0e3a0a7b2309bf0abecf1c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { TagClasses } from "@/db/schema/vendorData"

export interface EquipClassColumnConfig {
  id: keyof TagClasses
  label: string
  group?: string
  excelHeader?: string
  type?: string
}

export const equipclassColumnsConfig: EquipClassColumnConfig[] = [
  {
    id: "code",
    label: "Code",
    excelHeader: "Code",
    // group: "Basic Info",
  },
  {
    id: "label",
    label: "Label",
    excelHeader: "Label",
    // group: "Basic Info",
  },
  {
    id: "tagTypeCode",
    label: "Tag Type Code",
    excelHeader: "Tag Type Code",
    // group: "Basic Info",
  },
 

  {
    id: "createdAt",
    label: "Created At",
    excelHeader: "Created At",
    // group: "Metadata",a
  },
  {
    id: "updatedAt",
    label: "Updated At",
    excelHeader: "Updated At",
    // group: "Metadata",
  },
]