notice_set_dao.go 1.4 KB

12345678910111213141516171819202122232425
  1. package dao
  2. import "gorm.io/gorm"
  3. // NoticeSet 告警通知设置
  4. type NoticeSet struct {
  5. gorm.Model
  6. TenantId string `gorm:"comment:租户;default:0" json:"_"` //租户
  7. DeviceType int `gorm:"comment:设备类型;default:0" json:"deviceType"` //设备类型1-15
  8. DeviceId int `gorm:"comment:设备ID;default:0" json:"deviceId"` //设备ID
  9. RType int `gorm:"comment:发送类型:0 - 全部 1按设备 2设备ID;" json:"deviceType"` //发送类型:0 - 全部设备 1 按设备类型 2按设备ID
  10. DevUserIds string `gorm:"comment:运维通知人员;" json:"devUserIds"` //运维通知人员
  11. BusinessUserIds string `gorm:"comment:业务通知人员;" json:"businessUserIds"` //业务通知人员
  12. DevUserNoticeModes string `gorm:"comment:运维通知方式;" json:"devUserNoticeModes"` //运维通知方式 1短信 2邮件
  13. BusinessNoticeModes string `gorm:"comment:业务通知方式;" json:"businessNoticeModes"` //业务通知方式 1短信 2邮件+
  14. DevUserNoticeModesName string `json:"showOperationTypeName"`
  15. BusinessNoticeModesName string `json:"showBusinessTypeName"`
  16. DevUserIdsName string `json:"noticeOperationName"`
  17. BusinessUserIdsName string `json:"noticeBusinessName"`
  18. }
  19. func (NoticeSet) TableName() string {
  20. return "warn_notice_set"
  21. }