25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

12 lines
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. }