diff --git a/app/mix/service/apiservice.go b/app/mix/service/apiservice.go index 7258478f..0bdd3516 100644 --- a/app/mix/service/apiservice.go +++ b/app/mix/service/apiservice.go @@ -3138,6 +3138,7 @@ func (s *Service) ApiGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_p ZoneThirdPartner: zoneThirdPartner, Account: acctVO, } + vo.ZoneThirdPartner.IsHided = goproto.Int64(vo.ZoneThirdPartner.GetIsHided()) return } @@ -3283,6 +3284,7 @@ func (s *Service) ApiGetZoneCollaboratorList(ctx *gin.Context, req *zone_collabo ZoneThirdPartner: zoneThirdPartner, Account: acctVO, } + ztpVO.ZoneThirdPartner.IsHided = goproto.Int64(ztpVO.ZoneThirdPartner.GetIsHided()) return } diff --git a/app/mix/service/service.go b/app/mix/service/service.go index 64ca3627..ef554330 100644 --- a/app/mix/service/service.go +++ b/app/mix/service/service.go @@ -3836,6 +3836,7 @@ func (s *Service) OpGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_pa ZoneThirdPartner: zoneThirdPartner, Account: acctVO, } + vo.ZoneThirdPartner.IsHided = goproto.Int64(vo.ZoneThirdPartner.GetIsHided()) return }