审查视图

pkg/domain/business_admin.go 386 字节
庄敏学 authored
1 2 3 4 5 6 7 8 9 10 11 12 13
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)
}