您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

12 行
256 B

  1. package model
  2. import "time"
  3. type Alert struct {
  4. ID string `json:"id" gorm:"primaryKey"`
  5. TrackerID string `json:"tracker_id"`
  6. Type string `json:"type"`
  7. Status string `json:"status"`
  8. Timestamp time.Time `json:"timestamp"`
  9. }