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

13 lines
264 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/model"
2021-09-11 14:04:09 +08:00
)
type Msg interface {
GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult[any]
2021-09-11 14:04:09 +08:00
Insert(msg *entity.Msg)
}