platformAlarmDao.go 5.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package dao
  2. import (
  3. "iot_manager_service/app/warn/model"
  4. "iot_manager_service/util/common"
  5. )
  6. // PlatformAlarm 平台所有告警-来源边缘端接口
  7. type PlatformAlarm struct {
  8. ID int `gorm:"comment:ID" json:"ID"`
  9. ArmClassify int `gorm:"column:arm_classify;type:int(11);comment:告警分类1运维2业务" json:"armClassify"` // 告警分类 1运维 2业务
  10. ArmDeviceType int `gorm:"column:arm_device_type;type:int(11);comment:设备类型1" json:"armDeviceType"` // 告警设备类型1摄像头2网关3灯控4配电5信息屏...15
  11. ArmDeviceTypeName string `gorm:";comment:设备类型1" json:"armDeviceTypeName"`
  12. ArmDeviceId int `gorm:"column:arm_device_id;type:int(11);comment:设备id" json:"armDeviceId"` // 告警设备id
  13. ArmDeviceName string `gorm:"column:arm_device_name;type:varchar(64);comment:设备名称" json:"armDeviceName"` // 告警设备名称
  14. ArmDeviceSn string `gorm:"column:arm_device_sn;type:varchar(60);comment:设备编码" json:"armDeviceSn"` // 告警设备编码
  15. LampPoleId int `gorm:"column:lamp_pole_id;type:int(11);comment:灯杆ID" json:"lampPoleId"` // 所属灯杆ID
  16. LampPoleName string `gorm:"column:lamp_pole_name;type:varchar(64);comment:灯杆名称" json:"lampPoleName"` // 所属灯杆名称
  17. LampPoleSn string `gorm:"column:lamp_pole_sn;type:varchar(60);comment:灯杆唯一编码" json:"lampPoleSn"` // 灯杆唯一编码
  18. LampPoleLocation string `gorm:"column:lamp_pole_location;type:varchar(255);comment:灯杆地址" json:"lampPoleLocation"` // 灯杆地址
  19. ArmSource int `gorm:"column:arm_source;type:int(11);comment:告警来源 1系统2人工" json:"armSource"` // 告警来源 1系统2人工
  20. ArmTime common.Time `gorm:"column:arm_time;type:datetime;comment:告警开始时间" json:"armTime"` // 告警开始时间
  21. ArmEndTime common.Time `gorm:"column:arm_end_time;type:datetime;comment:告警结束时间" json:"armEndTime"` // 告警结束时间
  22. ArmHandle int `gorm:"column:arm_handle;type:int(11);comment:当前处理状态1待处理2忽略3已处理4其他" json:"armHandle"` // 当前处理状态1待处理2忽略3已处理4其他
  23. ArmLevel int `gorm:"column:arm_level;type:int(11);comment: 告警类型 1紧急2严重3普通" json:"armLevel"` // 告警类型 1紧急2严重3普通
  24. ArmContent string `gorm:"column:arm_content;type:varchar(255);comment:告警内容" json:"armContent"` // 告警内容
  25. ArmUrl string `gorm:"column:arm_url;type:varchar(1000);comment:运维告警图片地址" json:"armUrl"` // 运维告警图片地址
  26. ArmHandleTime common.Time `gorm:"column:arm_handle_time;type:datetime" json:"armHandleTime"` // 告警处理时间
  27. Status int `gorm:"column:status;type:int(11);comment:告警状态 1处理完成2待处理3无需处理" json:"status"` // 告警状态 1处理完成2待处理3无需处理
  28. NoticeRecordId int `gorm:"comment:发送通知ID" json:"noticeRecordId"`
  29. NoticeRecord NoticeRecord
  30. TenantId string `gorm:"column:tenant_id;type:varchar(12);comment:租户ID" json:"tenantId"` // 租户ID
  31. ProcessInstanceId string `gorm:"column:process_instance_id;type:varchar(255);comment:流程实例主键" json:"processInstanceId"` // 流程实例主键
  32. BusinessId string `gorm:"column:business_id;type:varchar(64);comment:流程实例主键ID" json:"businessId"` // 流程实例主键ID
  33. Threshold float64 `gorm:"column:threshold;type:float(11,2);comment:阈值-业务告警" json:"threshold"` // 阈值-业务告警
  34. Value float64 `gorm:"column:value;type:float(11,2);comment:告警时的值-业务告警" json:"value"` // 告警时的值-业务告警
  35. Sid int `gorm:"column:sid;type:int(11);comment:物模型sid" json:"sid"` // 物模型sid
  36. Cid uint `gorm:"column:cid;type:int(10) unsigned;comment:告警策略编号" json:"cid"` // 告警策略编号
  37. Cname string `gorm:"column:cname;type:varchar(100);comment:告警策略名称" json:"cname"` // 告警策略名称
  38. ExtendId int `gorm:"column:extend_id;type:int(11);comment:扩展id"json:"extendId"` // 扩展id
  39. }
  40. func (PlatformAlarm) TableName() string {
  41. return "warn_platform_alarm"
  42. }
  43. func (a PlatformAlarm) Gets(filter model.RequestPlatFormAlartFilter) ([]PlatformAlarm, int64, error) {
  44. var list []PlatformAlarm
  45. db := Db.Debug().Model(&a).Where(&PlatformAlarm{TenantId: a.TenantId})
  46. db = db.Scopes(common.Paginate(filter.Current, filter.Size))
  47. if filter.ArmHandle > 0 {
  48. handle := filter.ArmHandle
  49. status := 2
  50. if handle == 1 {
  51. }
  52. db = db.Where(&PlatformAlarm{Status: status})
  53. }
  54. if filter.ArmDeviceType > 0 {
  55. db = db.Where(&PlatformAlarm{ArmDeviceType: filter.ArmDeviceType})
  56. }
  57. if filter.ArmDeviceName != "" {
  58. db = db.Where(&PlatformAlarm{ArmDeviceName: filter.ArmDeviceName})
  59. }
  60. err := db.Preload("NoticeRecord").Order("id desc").Find(&list).Error
  61. var count int64
  62. db.Count(&count)
  63. //fmt.Printf("count = %v", count)
  64. return list, count, err
  65. }
  66. func (a PlatformAlarm) GetMaxIdAndUpDateTime() (int64, string) {
  67. var platformAlarm PlatformAlarm
  68. Db.Debug().Where(&PlatformAlarm{TenantId: a.TenantId}).Order("id desc").First(&platformAlarm)
  69. return int64(platformAlarm.ID), platformAlarm.ArmTime.String()
  70. }
  71. func (a PlatformAlarm) BatchCreate(his []PlatformAlarm) error {
  72. return Db.Debug().CreateInBatches(his, 1000).Error
  73. }