Files
mayfly-go/server/internal/msg/domain/repository/msg.go
2023-07-03 21:42:04 +08:00

13 lines
264 B
Go

package repository
import (
"mayfly-go/internal/msg/domain/entity"
"mayfly-go/pkg/model"
)
type Msg interface {
GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult[any]
Insert(msg *entity.Msg)
}