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

13 lines
266 B
Go
Raw Normal View History

2021-09-11 14:04:09 +08:00
package repository
import (
"mayfly-go/base/model"
"mayfly-go/server/sys/domain/entity"
)
type Msg interface {
GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult
Insert(msg *entity.Msg)
}