feat: 内转请求的网元参数配置接口
This commit is contained in:
24
src/modules/network_element/repository/ne_config.go
Normal file
24
src/modules/network_element/repository/ne_config.go
Normal file
@@ -0,0 +1,24 @@
|
||||
package repository
|
||||
|
||||
import "be.ems/src/modules/network_element/model"
|
||||
|
||||
// INeConfig 网元参数配置可用属性值 数据层接口
|
||||
type INeConfig interface {
|
||||
// SelectPage 根据条件分页查询字典类型
|
||||
SelectPage(query map[string]any) map[string]any
|
||||
|
||||
// SelectList 根据实体查询
|
||||
SelectList(param model.NeConfig) []model.NeConfig
|
||||
|
||||
// SelectByIds 通过ID查询
|
||||
SelectByIds(ids []string) []model.NeConfig
|
||||
|
||||
// Insert 新增信息
|
||||
Insert(param model.NeConfig) string
|
||||
|
||||
// Update 修改信息
|
||||
Update(param model.NeConfig) int64
|
||||
|
||||
// DeleteByIds 批量删除信息
|
||||
DeleteByIds(ids []string) int64
|
||||
}
|
||||
Reference in New Issue
Block a user