add: 新增告警数据信息接口

This commit is contained in:
TsMask
2024-03-18 11:19:54 +08:00
parent c411b5ca5c
commit bf16d2b984
7 changed files with 412 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package service
import "be.ems/src/modules/network_data/model"
// 告警 服务层接口
type IAlarm interface {
// SelectPage 根据条件分页查询
SelectPage(querys model.AlarmQuery) map[string]any
// DeleteByIds 批量删除信息
DeleteByIds(ids []string) (int64, error)
}