uniugm/admin/apps/game/service/service_account.go
2025-07-09 10:55:26 +08:00

18 lines
554 B
Go

package service
import (
"admin/internal/model/dto"
)
func (svc *Service) GetAccountDetail(projectId int, params *dto.GetAccountDetailReq) (*dto.GetAccountDetailRsp, error) {
return svc.accountSvc.GetAccountDetail(projectId, params.Account)
}
func (svc *Service) GetRoleDetail(projectId int, params *dto.GetRoleDetailReq) (*dto.GetRoleDetailRsp, error) {
return svc.accountSvc.GetRoleDetail(projectId, params)
}
func (svc *Service) GetWhiteListAll(projectId int) ([]*dto.WhiteListInfo, error) {
return svc.accountSvc.GetWhiteListAll(projectId)
}