2021-05-08 18:00:33 +08:00
|
|
|
package repository
|
|
|
|
|
|
|
|
|
|
import (
|
2022-09-09 18:26:08 +08:00
|
|
|
"mayfly-go/internal/db/domain/entity"
|
2022-06-02 17:41:11 +08:00
|
|
|
"mayfly-go/pkg/model"
|
2021-05-08 18:00:33 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type Db interface {
|
2023-08-30 22:41:42 +08:00
|
|
|
// 分页获取数据信息列表
|
2023-07-01 14:34:42 +08:00
|
|
|
GetDbList(condition *entity.DbQuery, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult[any]
|
2021-05-08 18:00:33 +08:00
|
|
|
|
2022-10-26 20:49:29 +08:00
|
|
|
Count(condition *entity.DbQuery) int64
|
2021-09-11 14:04:09 +08:00
|
|
|
|
2023-08-30 22:41:42 +08:00
|
|
|
// 根据条件获取数据库信息
|
2021-05-08 18:00:33 +08:00
|
|
|
GetDb(condition *entity.Db, cols ...string) error
|
|
|
|
|
|
|
|
|
|
// 根据id获取
|
|
|
|
|
GetById(id uint64, cols ...string) *entity.Db
|
2021-07-28 18:03:19 +08:00
|
|
|
|
|
|
|
|
Insert(db *entity.Db)
|
|
|
|
|
|
|
|
|
|
Update(db *entity.Db)
|
|
|
|
|
|
|
|
|
|
Delete(id uint64)
|
2021-05-08 18:00:33 +08:00
|
|
|
}
|