14 lines
360 B
Go
14 lines
360 B
Go
|
|
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"`
|
|||
|
|
}
|