package models import "time" type Comment struct { ID int64 `json:"id"` AlertID int64 `json:"alert_id"` UserID int64 `json:"user_id"` Username string `json:"username"` Content string `json:"content"` CreatedAt time.Time `json:"created_at"` }