2021-12-23 12:17:25 +08:00
|
|
|
export type Chartype = {
|
2021-12-19 19:19:46 +08:00
|
|
|
id: number | string
|
|
|
|
title: string // 标题
|
|
|
|
label: string // 标签
|
2022-05-22 15:06:45 +08:00
|
|
|
time: string, // 时间
|
|
|
|
createId: string, // 创建者
|
|
|
|
release: boolean // false 未发布 | true 已发布
|
2021-12-19 19:19:46 +08:00
|
|
|
}
|
2021-12-23 12:17:25 +08:00
|
|
|
|
|
|
|
export type ChartList = Chartype[]
|