mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
13 lines
321 B
Go
13 lines
321 B
Go
package repository
|
|
|
|
import "mayfly-go/internal/auth/domain/entity"
|
|
|
|
type Oauth2Account interface {
|
|
// GetOAuthAccount 根据identity获取第三方账号信息
|
|
GetOAuthAccount(condition *entity.Oauth2Account, cols ...string) error
|
|
|
|
SaveOAuthAccount(e *entity.Oauth2Account) error
|
|
|
|
DeleteBy(e *entity.Oauth2Account)
|
|
}
|