add: SMF CDR

This commit is contained in:
2024-05-28 10:15:41 +08:00
parent 053fe3c429
commit 83488d27d1
12 changed files with 640 additions and 15 deletions

View File

@@ -10,3 +10,12 @@ type ICDREvent interface {
// DeleteByIds 批量删除信息
DeleteByIds(cdrIds []string) (int64, error)
}
// CDR会话事件 服务层接口
type SMFCDREvent interface {
// SelectPage 根据条件分页查询
SelectPage(querys model.SMFCDREventQuery) map[string]any
// DeleteByIds 批量删除信息
DeleteByIds(cdrIds []string) (int64, error)
}