生产管理系统前端 开发中心配置系统 所有页面

This commit is contained in:
2025-10-21 18:04:39 +08:00
parent 4a5d278d89
commit 9afc680833
185 changed files with 13677 additions and 4487 deletions

View File

@@ -39,3 +39,23 @@ 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;
}