生产管理系统前端 - 更新瓦力提交的产品原型到参考目录

This commit is contained in:
2025-10-23 10:57:14 +08:00
parent 83523dad64
commit 28229ce795
354 changed files with 147599 additions and 7892 deletions

View File

@@ -39,23 +39,3 @@ export interface MessageLog {
retryCount: number;
variables?: Record<string, any>;
}
// 消息发送记录
export interface MessageSendRecord {
id: string;
templateId: string;
templateName: string;
type: MessageType;
recipients: string[];
recipientCount: number;
subject?: string;
content: string;
sendType: 'immediate' | 'scheduled';
scheduledTime?: string;
status: 'pending' | 'sending' | 'sent' | 'failed' | 'cancelled';
sentCount?: number;
failedCount?: number;
sentAt?: string;
createdAt: string;
createdBy: string;
}