noticeRecordDao.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package dao
  2. import (
  3. "gorm.io/gorm"
  4. "iot_manager_service/app/warn/model"
  5. "iot_manager_service/util/common"
  6. )
  7. // NoticeRecord 告警通知记录
  8. type NoticeRecord struct {
  9. gorm.Model
  10. NoticeSetId int `gorm:"comment:告警通知设置ID;" json:"noticeSetId"`
  11. NoticeSet NoticeSet
  12. ArmClassify int `gorm:"comment:告警类型:1运维,2业务;" json:"classify"`
  13. Content string `gorm:"comment:发送内容;" json:"content"`
  14. Status int `gorm:"comment:发送状态;" json:"status"`
  15. SendType int `gorm:"comment:发送方式1短信2邮件" json:"sendType"`
  16. SendTypeName string `gorm:"comment:发送方式" json:"SendTypeName"`
  17. SendValue int `gorm:"comment:手机号或邮件" json:"sendValue"`
  18. SendName string `gorm:"comment:收件人" json:"sendName"`
  19. }
  20. func (NoticeRecord) TableName() string {
  21. return "warn_notice_record"
  22. }
  23. func (r NoticeRecord) GetList(filter model.RequestNoticeRecordFilter) ([]NoticeRecord, int64, error) {
  24. var list []NoticeRecord
  25. var total int64
  26. db := Db.Debug().Model(&r)
  27. db = db.Scopes(common.Paginate(filter.Current, filter.Size)).Preload("NoticeSet")
  28. // 告警类型
  29. if filter.ClassifyName != 0 {
  30. db = db.Where(&NoticeRecord{ArmClassify: filter.ClassifyName})
  31. }
  32. //发送状态
  33. if filter.SendValue != 0 {
  34. if filter.SendValue == 2 { //1成功 2为失败
  35. filter.SendValue = 0
  36. }
  37. db = db.Where(&NoticeRecord{Status: filter.SendValue})
  38. }
  39. //发送方式
  40. if filter.SendType != 0 {
  41. db = db.Where(&NoticeRecord{SendType: filter.SendType})
  42. }
  43. //时间范围
  44. if filter.StartTime != "" {
  45. db = db.Where("created_at>=? and created_at<=?", filter.StartTime, filter.EndTime)
  46. }
  47. //发送人
  48. if filter.SendName != "" {
  49. db = db.Where("send_name=?", filter.SendName)
  50. }
  51. err := db.Find(&list).Error
  52. db.Count(&total)
  53. //fmt.Printf("total = %v", total)
  54. return list, total, err
  55. }