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

@@ -13,3 +13,15 @@ type ICDREvent interface {
// DeleteByIds 批量删除信息
DeleteByIds(cdrIds []string) int64
}
// SMF CDR Event
type SMFCDREvent interface {
// SelectPage 根据条件分页查询
SelectPage(querys model.SMFCDREventQuery) map[string]any
// SelectByIds 通过ID查询
SelectByIds(cdrIds []string) []model.CDREventSMF
// DeleteByIds 批量删除信息
DeleteByIds(cdrIds []string) int64
}