mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-04-25 13:45:18 +08:00
refactor: interface{} -> any
feat: 新增外链菜单
This commit is contained in:
@@ -13,7 +13,7 @@ func newMsgRepo() repository.Msg {
|
||||
return new(msgRepoImpl)
|
||||
}
|
||||
|
||||
func (m *msgRepoImpl) GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) *model.PageResult {
|
||||
func (m *msgRepoImpl) GetPageList(condition *entity.Msg, pageParam *model.PageParam, toEntity any, orderBy ...string) *model.PageResult {
|
||||
return model.GetPage(pageParam, condition, condition, toEntity)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user