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

18 lines
554 B
Go
Raw Normal View History

2025-05-13 18:13:22 +08:00
package service
import (
2025-05-16 15:17:10 +08:00
"admin/internal/model/dto"
2025-05-13 18:13:22 +08:00
)
func (svc *Service) GetAccountDetail(projectId int, params *dto.GetAccountDetailReq) (*dto.GetAccountDetailRsp, error) {
return svc.accountSvc.GetAccountDetail(projectId, params.Account)
}
2025-07-09 10:55:26 +08:00
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)
}