選択できるのは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. }