Files
mayfly-go/server/internal/msg/domain/repository/msg.go

14 lines
294 B
Go
Raw Normal View History

2021-09-11 14:04:09 +08:00
package repository
import (
2023-07-03 21:42:04 +08:00
"mayfly-go/internal/msg/domain/entity"
"mayfly-go/pkg/base"
"mayfly-go/pkg/model"
2021-09-11 14:04:09 +08:00
)
type Msg interface {
base.Repo[*entity.Msg]
2021-09-11 14:04:09 +08:00
GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity any, orderBy ...string) (*model.PageResult[any], error)
2021-09-11 14:04:09 +08:00
}