feat: 新增mme的用户事件查询接口

This commit is contained in:
TsMask
2024-06-15 17:18:34 +08:00
parent 10ac827f43
commit 43fc96b18e
10 changed files with 490 additions and 11 deletions

View File

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