export type ChartType = {
id: number | string
creator?: string
createTime?: string
enabled?: boolean
tenantId?: string
content?: any
state?: number
name?: string
threeModelFilePath?: string
imageUrl?: string | undefined
}
export type ChartList = ChartType[]