uniugm/admin/apps/game/service/service_account.go
2025-05-16 15:17:10 +08:00

10 lines
247 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)
}