mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
13 lines
259 B
Go
13 lines
259 B
Go
package repository
|
|
|
|
import (
|
|
"mayfly-go/internal/sys/domain/entity"
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type Msg interface {
|
|
GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult
|
|
|
|
Insert(msg *entity.Msg)
|
|
}
|