Files
platforms/backend/internal/platform/saf_event.go

14 lines
360 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 platform
import "time"
// SafEvent 对应 saf_event表示需要跟踪处置的安全事件。
type SafEvent struct {
Identity string `json:"identity"`
EventCode string `json:"eventCode"`
Level int `json:"level"`
Title string `json:"title"`
Status string `json:"status"`
CreatedAt time.Time `json:"createdAt"`
}