by Robin at 20240521

This commit is contained in:
Leufolium 2024-05-21 23:29:59 +08:00
parent ab80a78cc7
commit a45323164a
2 changed files with 3 additions and 0 deletions

View File

@ -8,4 +8,5 @@ import (
type ZoneThirdPartnerApiVO struct { type ZoneThirdPartnerApiVO struct {
*dbstruct.ZoneThirdPartner *dbstruct.ZoneThirdPartner
Account *accountproto.ApiListOthersVO `json:"third_partner_account"` Account *accountproto.ApiListOthersVO `json:"third_partner_account"`
IsHided int64 `json:"is_hided"`
} }

View File

@ -3064,6 +3064,7 @@ func (s *Service) ApiGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_p
ThirdPartnerMid: nil, ThirdPartnerMid: nil,
SharingRatio: nil, SharingRatio: nil,
}, },
IsHided: consts.IsHided_Yes,
} }
return return
} }
@ -3101,6 +3102,7 @@ func (s *Service) ApiGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_p
vo = &zone_third_partner_proto.ZoneThirdPartnerApiVO{ vo = &zone_third_partner_proto.ZoneThirdPartnerApiVO{
ZoneThirdPartner: zoneThirdPartner, ZoneThirdPartner: zoneThirdPartner,
Account: acctVO, Account: acctVO,
IsHided: consts.IsHided_No,
} }
return return