feat: 跟踪任务 网元HLR功能接口
This commit is contained in:
24
src/modules/trace/repository/trace_task_hlr.go
Normal file
24
src/modules/trace/repository/trace_task_hlr.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package repository
|
||||
|
||||
import "be.ems/src/modules/trace/model"
|
||||
|
||||
// 跟踪_任务给HRL网元 数据层接口
|
||||
type ITraceTaskHlr interface {
|
||||
// SelectPage 根据条件分页查询
|
||||
SelectPage(querys model.TraceTaskHlrQuery) map[string]any
|
||||
|
||||
// SelectList 根据实体查询
|
||||
SelectList(neHost model.TraceTaskHlr) []model.TraceTaskHlr
|
||||
|
||||
// SelectByIds 通过ID查询
|
||||
SelectByIds(ids []string) []model.TraceTaskHlr
|
||||
|
||||
// Insert 新增信息
|
||||
Insert(task model.TraceTaskHlr) string
|
||||
|
||||
// Update 修改信息
|
||||
Update(task model.TraceTaskHlr) int64
|
||||
|
||||
// DeleteByIds 批量删除信息
|
||||
DeleteByIds(ids []string) int64
|
||||
}
|
||||
Reference in New Issue
Block a user