Files
ckb-SuperAdmin/Cunkebao/types/content.ts
笔记本里的永平 5ff15472f5 feat: 本次提交更新内容如下
场景获客列表搞定
2025-07-07 17:08:27 +08:00

42 lines
786 B
TypeScript

export interface ContentLibrary {
id: string
name: string
source: string
creator: string
contentCount: number
lastUpdated: string
type: "moments" | "chat" | "group"
status: "active" | "inactive"
items: ContentItem[]
}
export interface ContentItem {
id: string
title: string
content: string
type: "text" | "image" | "video"
images?: string[]
video?: string
createTime: string
publishTime?: string
status: "pending" | "published" | "failed"
}
export interface Tag {
id: string
name: string
description?: string
contentCount: number
lastSync: string
settings: {
syncInterval: number
timeRange: {
start: string
end: string
}
dailyLimit: number
accountType: "business" | "personal"
enabled: boolean
}
}