feat: 本次提交更新内容如下

样式和功能补齐
This commit is contained in:
笔记本里的永平
2025-07-10 11:50:34 +08:00
parent b4797425fc
commit 2c1e0ab7ac
7 changed files with 68 additions and 29 deletions

View File

@@ -7,6 +7,12 @@ export type ContentType = 'text' | 'image' | 'video' | 'link';
// 同步模式
export type SyncMode = 'auto' | 'manual';
// 配置信息
export interface MomentsSyncConfig {
contentLibraryNames: string[];
[key: string]: any;
}
// 朋友圈同步任务
export interface MomentsSyncTask {
id: string;
@@ -17,7 +23,7 @@ export interface MomentsSyncTask {
syncCount: number;
lastSyncTime: string;
createTime: string;
creator: string;
creatorName: string;
syncInterval: number;
maxSyncPerDay: number;
timeRange: { start: string; end: string };
@@ -31,6 +37,7 @@ export interface MomentsSyncTask {
todaySyncCount: number;
totalSyncCount: number;
updateTime: string;
config?: MomentsSyncConfig;
}
// 创建任务数据