mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-10 01:40:25 +08:00
refactor: 后端包结构重构、去除无用的文件
This commit is contained in:
23
server/internal/devops/domain/repository/machine_script.go
Normal file
23
server/internal/devops/domain/repository/machine_script.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package repository
|
||||
|
||||
import (
|
||||
"mayfly-go/internal/devops/domain/entity"
|
||||
"mayfly-go/pkg/model"
|
||||
)
|
||||
|
||||
type MachineScript interface {
|
||||
// 分页获取机器脚本信息列表
|
||||
GetPageList(condition *entity.MachineScript, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult
|
||||
|
||||
// 根据条件获取
|
||||
GetMachineScript(condition *entity.MachineScript, cols ...string) error
|
||||
|
||||
// 根据id获取
|
||||
GetById(id uint64, cols ...string) *entity.MachineScript
|
||||
|
||||
Delete(id uint64)
|
||||
|
||||
Create(entity *entity.MachineScript)
|
||||
|
||||
UpdateById(entity *entity.MachineScript)
|
||||
}
|
||||
Reference in New Issue
Block a user