feat: 跟踪任务 网元HLR功能接口

This commit is contained in:
TsMask
2024-09-06 14:20:54 +08:00
parent 56b531536d
commit a7b57af939
7 changed files with 741 additions and 0 deletions

View 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
}