|
@@ -1,15 +1,16 @@
|
|
package dao
|
|
package dao
|
|
|
|
|
|
import (
|
|
import (
|
|
- "gorm.io/gorm"
|
|
|
|
|
|
+ "iot_manager_service/app/warn/model"
|
|
"iot_manager_service/util/common"
|
|
"iot_manager_service/util/common"
|
|
)
|
|
)
|
|
|
|
|
|
// PlatformAlarm 平台所有告警-来源边缘端接口
|
|
// PlatformAlarm 平台所有告警-来源边缘端接口
|
|
type PlatformAlarm struct {
|
|
type PlatformAlarm struct {
|
|
- gorm.Model
|
|
|
|
- ArmClassify int `gorm:"column:arm_classify;type:int(11);comment:告警分类1运维2业务" json:"armClassify"` // 告警分类 1运维 2业务
|
|
|
|
- ArmDeviceType int `gorm:"column:arm_device_type;type:int(11);comment:设备类型1" json:"armDeviceType"` // 告警设备类型1摄像头2网关3灯控4配电5信息屏...15
|
|
|
|
|
|
+ ID int `gorm:"comment:ID" json:"ID"`
|
|
|
|
+ ArmClassify int `gorm:"column:arm_classify;type:int(11);comment:告警分类1运维2业务" json:"armClassify"` // 告警分类 1运维 2业务
|
|
|
|
+ ArmDeviceType int `gorm:"column:arm_device_type;type:int(11);comment:设备类型1" json:"armDeviceType"` // 告警设备类型1摄像头2网关3灯控4配电5信息屏...15
|
|
|
|
+ ArmDeviceTypeName string `gorm:";comment:设备类型1" json:"armDeviceTypeName"`
|
|
ArmDeviceId int `gorm:"column:arm_device_id;type:int(11);comment:设备id" json:"armDeviceId"` // 告警设备id
|
|
ArmDeviceId int `gorm:"column:arm_device_id;type:int(11);comment:设备id" json:"armDeviceId"` // 告警设备id
|
|
ArmDeviceName string `gorm:"column:arm_device_name;type:varchar(64);comment:设备名称" json:"armDeviceName"` // 告警设备名称
|
|
ArmDeviceName string `gorm:"column:arm_device_name;type:varchar(64);comment:设备名称" json:"armDeviceName"` // 告警设备名称
|
|
ArmDeviceSn string `gorm:"column:arm_device_sn;type:varchar(60);comment:设备编码" json:"armDeviceSn"` // 告警设备编码
|
|
ArmDeviceSn string `gorm:"column:arm_device_sn;type:varchar(60);comment:设备编码" json:"armDeviceSn"` // 告警设备编码
|
|
@@ -27,17 +28,53 @@ type PlatformAlarm struct {
|
|
ArmHandleTime common.Time `gorm:"column:arm_handle_time;type:datetime" json:"armHandleTime"` // 告警处理时间
|
|
ArmHandleTime common.Time `gorm:"column:arm_handle_time;type:datetime" json:"armHandleTime"` // 告警处理时间
|
|
Status int `gorm:"column:status;type:int(11);comment:告警状态 1处理完成2待处理3无需处理" json:"status"` // 告警状态 1处理完成2待处理3无需处理
|
|
Status int `gorm:"column:status;type:int(11);comment:告警状态 1处理完成2待处理3无需处理" json:"status"` // 告警状态 1处理完成2待处理3无需处理
|
|
NoticeRecordId int `gorm:"comment:发送通知ID" json:"noticeRecordId"`
|
|
NoticeRecordId int `gorm:"comment:发送通知ID" json:"noticeRecordId"`
|
|
- TenantId string `gorm:"column:tenant_id;type:varchar(12);comment:租户ID" json:"tenantId"` // 租户ID
|
|
|
|
- ProcessInstanceId string `gorm:"column:process_instance_id;type:varchar(255);comment:流程实例主键" json:"processInstanceId"` // 流程实例主键
|
|
|
|
- BusinessId string `gorm:"column:business_id;type:varchar(64);comment:流程实例主键ID" json:"businessId"` // 流程实例主键ID
|
|
|
|
- Threshold float64 `gorm:"column:threshold;type:float(11,2);comment:阈值-业务告警" json:"threshold"` // 阈值-业务告警
|
|
|
|
- Value float64 `gorm:"column:value;type:float(11,2);comment:告警时的值-业务告警" json:"value"` // 告警时的值-业务告警
|
|
|
|
- Sid int `gorm:"column:sid;type:int(11);comment:物模型sid" json:"sid"` // 物模型sid
|
|
|
|
- Cid uint `gorm:"column:cid;type:int(10) unsigned;comment:告警策略编号" json:"cid"` // 告警策略编号
|
|
|
|
- Cname string `gorm:"column:cname;type:varchar(100);comment:告警策略名称" json:"cname"` // 告警策略名称
|
|
|
|
- ExtendId int `gorm:"column:extend_id;type:int(11);comment:扩展id"json:"extendId"` // 扩展id
|
|
|
|
|
|
+ NoticeRecord NoticeRecord
|
|
|
|
+ TenantId string `gorm:"column:tenant_id;type:varchar(12);comment:租户ID" json:"tenantId"` // 租户ID
|
|
|
|
+ ProcessInstanceId string `gorm:"column:process_instance_id;type:varchar(255);comment:流程实例主键" json:"processInstanceId"` // 流程实例主键
|
|
|
|
+ BusinessId string `gorm:"column:business_id;type:varchar(64);comment:流程实例主键ID" json:"businessId"` // 流程实例主键ID
|
|
|
|
+ Threshold float64 `gorm:"column:threshold;type:float(11,2);comment:阈值-业务告警" json:"threshold"` // 阈值-业务告警
|
|
|
|
+ Value float64 `gorm:"column:value;type:float(11,2);comment:告警时的值-业务告警" json:"value"` // 告警时的值-业务告警
|
|
|
|
+ Sid int `gorm:"column:sid;type:int(11);comment:物模型sid" json:"sid"` // 物模型sid
|
|
|
|
+ Cid uint `gorm:"column:cid;type:int(10) unsigned;comment:告警策略编号" json:"cid"` // 告警策略编号
|
|
|
|
+ Cname string `gorm:"column:cname;type:varchar(100);comment:告警策略名称" json:"cname"` // 告警策略名称
|
|
|
|
+ ExtendId int `gorm:"column:extend_id;type:int(11);comment:扩展id"json:"extendId"` // 扩展id
|
|
}
|
|
}
|
|
|
|
|
|
func (PlatformAlarm) TableName() string {
|
|
func (PlatformAlarm) TableName() string {
|
|
return "warn_platform_alarm"
|
|
return "warn_platform_alarm"
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+func (a PlatformAlarm) Gets(filter model.RequestPlatFormAlartFilter) ([]PlatformAlarm, int64, error) {
|
|
|
|
+ var list []PlatformAlarm
|
|
|
|
+ db := Db.Debug().Model(&a).Where(&PlatformAlarm{TenantId: a.TenantId})
|
|
|
|
+ db = db.Scopes(common.Paginate(filter.Current, filter.Size))
|
|
|
|
+ if filter.ArmHandle > 0 {
|
|
|
|
+ handle := filter.ArmHandle
|
|
|
|
+ status := 2
|
|
|
|
+ if handle == 1 {
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
+ db = db.Where(&PlatformAlarm{Status: status})
|
|
|
|
+ }
|
|
|
|
+ if filter.ArmDeviceType > 0 {
|
|
|
|
+ db = db.Where(&PlatformAlarm{ArmDeviceType: filter.ArmDeviceType})
|
|
|
|
+ }
|
|
|
|
+ if filter.ArmDeviceName != "" {
|
|
|
|
+ db = db.Where(&PlatformAlarm{ArmDeviceName: filter.ArmDeviceName})
|
|
|
|
+ }
|
|
|
|
+ err := db.Preload("NoticeRecord").Order("id desc").Find(&list).Error
|
|
|
|
+ var count int64
|
|
|
|
+ db.Count(&count)
|
|
|
|
+ //fmt.Printf("count = %v", count)
|
|
|
|
+ return list, count, err
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (a PlatformAlarm) GetMaxIdAndUpDateTime() (int64, string) {
|
|
|
|
+ var platformAlarm PlatformAlarm
|
|
|
|
+ Db.Debug().Where(&PlatformAlarm{TenantId: a.TenantId}).Order("id desc").First(&platformAlarm)
|
|
|
|
+ return int64(platformAlarm.ID), platformAlarm.ArmTime.String()
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (a PlatformAlarm) BatchCreate(his []PlatformAlarm) error {
|
|
|
|
+ return Db.Debug().CreateInBatches(his, 1000).Error
|
|
|
|
+}
|