2021-05-08 18:00:33 +08:00
|
|
|
package repository
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"mayfly-go/base/model"
|
2021-06-07 17:22:07 +08:00
|
|
|
"mayfly-go/server/devops/domain/entity"
|
2021-05-08 18:00:33 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type MachineFile interface {
|
|
|
|
|
// 分页获取机器脚本信息列表
|
|
|
|
|
GetPageList(condition *entity.MachineFile, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) model.PageResult
|
|
|
|
|
|
|
|
|
|
// 根据条件获取
|
|
|
|
|
GetMachineFile(condition *entity.MachineFile, cols ...string) error
|
|
|
|
|
|
|
|
|
|
// 根据id获取
|
|
|
|
|
GetById(id uint64, cols ...string) *entity.MachineFile
|
|
|
|
|
|
|
|
|
|
Delete(id uint64)
|
|
|
|
|
|
|
|
|
|
Create(entity *entity.MachineFile)
|
|
|
|
|
|
|
|
|
|
UpdateById(entity *entity.MachineFile)
|
|
|
|
|
}
|