生产管理系统前端 开发中心配置系统 所有页面
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user