add: 新增告警数据信息接口
This commit is contained in:
12
src/modules/network_data/service/alarm.go
Normal file
12
src/modules/network_data/service/alarm.go
Normal 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)
|
||||
}
|
||||
Reference in New Issue
Block a user