feat: 初始化平台总后台与核心API

This commit is contained in:
2026-07-26 18:06:14 +08:00
parent 44122809b1
commit 4382641e19
38 changed files with 1837 additions and 25 deletions

View File

@@ -0,0 +1,13 @@
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"`
}