diff --git a/app/mix/service/apiservice.go b/app/mix/service/apiservice.go index ecf18e41..860fdffb 100644 --- a/app/mix/service/apiservice.go +++ b/app/mix/service/apiservice.go @@ -3148,6 +3148,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 } @@ -3293,6 +3294,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 68ec43b2..2e9ed387 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 }