2021-07-28 18:03:19 +08:00
|
|
|
package repository
|
|
|
|
|
|
|
|
|
|
import (
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/internal/devops/domain/entity"
|
|
|
|
|
"mayfly-go/pkg/model"
|
2021-07-28 18:03:19 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Project interface {
|
|
|
|
|
GetPageList(condition *entity.Project, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult
|
|
|
|
|
|
2021-09-11 14:04:09 +08:00
|
|
|
Count(condition *entity.Project) int64
|
|
|
|
|
|
2021-07-28 18:03:19 +08:00
|
|
|
GetByIdIn(ids []uint64, toEntity interface{}, orderBy ...string)
|
|
|
|
|
|
|
|
|
|
Save(p *entity.Project)
|
|
|
|
|
|
|
|
|
|
Update(project *entity.Project)
|
2021-08-18 17:57:33 +08:00
|
|
|
|
|
|
|
|
Delete(id uint64)
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|