22 lines
551 B
Go
22 lines
551 B
Go
package service
|
|
|
|
import "be.ems/src/modules/network_data/model"
|
|
|
|
// CDR会话事件 服务层接口
|
|
type ICDREvent interface {
|
|
// SelectPage 根据条件分页查询
|
|
SelectPage(querys model.CDREventQuery) map[string]any
|
|
|
|
// DeleteByIds 批量删除信息
|
|
DeleteByIds(cdrIds []string) (int64, error)
|
|
}
|
|
|
|
// CDR会话事件 服务层接口
|
|
type SMFCDREvent interface {
|
|
// SelectPage 根据条件分页查询
|
|
SelectPage(querys model.SMFCDREventQuery) map[string]any
|
|
|
|
// DeleteByIds 批量删除信息
|
|
DeleteByIds(cdrIds []string) (int64, error)
|
|
}
|