mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-15 05:40:25 +08:00
14 lines
344 B
Go
14 lines
344 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/base/model"
|
||
|
|
"mayfly-go/server/sys/domain/entity"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Account interface {
|
||
|
|
// 根据条件获取账号信息
|
||
|
|
GetAccount(condition *entity.Account, cols ...string) error
|
||
|
|
|
||
|
|
GetPageList(condition *entity.Account, pageParam *model.PageParam, toEntity interface{}, orderBy ...string) model.PageResult
|
||
|
|
}
|