mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
13 lines
264 B
Go
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)
|
|
}
|