uniugm/admin/apps/game/service/service_account.go

10 lines
248 B
Go
Raw Normal View History

2025-05-13 18:13:22 +08:00
package service
import (
"admin/apps/game/model/dto"
)
func (svc *Service) GetAccountDetail(projectId int, params *dto.GetAccountDetailReq) (*dto.GetAccountDetailRsp, error) {
return svc.accountSvc.GetAccountDetail(projectId, params.Account)
}