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

13 lines
267 B
Go
Raw Normal View History

2021-09-11 14:04:09 +08:00
package repository
import (
"mayfly-go/internal/sys/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 interface{}, orderBy ...string) *model.PageResult
Insert(msg *entity.Msg)
}