notice_record_dao.go 501 B

1234567891011121314151617
  1. package dao
  2. import "gorm.io/gorm"
  3. // NoticeRecord 告警通知记录
  4. type NoticeRecord struct {
  5. gorm.Model
  6. NoticeSetId int `gorm:"comment:告警通知设置ID;" json:"noticeSetId"`
  7. NoticeSet NoticeSet
  8. ArmClassify int `gorm:"comment:告警类型:1运维,2业务;" json:"classify"`
  9. Content string `gorm:"comment:发送内容;" json:"content"`
  10. Status int `gorm:"comment:发送状态;" json:"status"`
  11. }
  12. func (NoticeRecord) TableName() string {
  13. return "warn_notice_record"
  14. }