business_admin.go 386 字节
package domain

import "gitlab.fjmaimaimai.com/allied-creation/performance/pkg/infrastructure/serviceGateway/reply"

// UCenterApi 统一用户中心
type UCenterApi interface {
	AuthCode(code string) (*reply.UCenterAuthCode, error)
}

// BusinessAdminApi 企业平台
type BusinessAdminApi interface {
	GetUserAuth(userId int64, platformId int) (*reply.BusinessAdminUserAuth, error)
}