mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
16 lines
339 B
Go
16 lines
339 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/db/domain/entity"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type DbSqlExec interface {
|
|
Insert(d *entity.DbSqlExec)
|
|
|
|
DeleteBy(condition *entity.DbSqlExec)
|
|
|
|
// 分页获取
|
|
GetPageList(condition *entity.DbSqlExec, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult
|
|
}
|