Files
SamWaf/model/notify_log.go
2025-11-25 09:07:21 +08:00

23 lines
713 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package model
import (
"SamWaf/model/baseorm"
)
/*
*
通知发送日志
*/
type NotifyLog struct {
baseorm.BaseOrm
ChannelId string `json:"channel_id"` // 渠道ID
ChannelName string `json:"channel_name"` // 渠道名称
ChannelType string `json:"channel_type"` // 渠道类型
MessageType string `json:"message_type"` // 消息类型
MessageTitle string `json:"message_title"` // 消息标题
MessageContent string `json:"message_content"` // 消息内容
Status int `json:"status"` // 发送状态1成功0失败
ErrorMsg string `json:"error_msg"` // 错误信息
SendTime string `json:"send_time"` // 发送时间
}