by Robin at 20240521
This commit is contained in:
parent
ab80a78cc7
commit
a45323164a
|
@ -8,4 +8,5 @@ import (
|
|||
type ZoneThirdPartnerApiVO struct {
|
||||
*dbstruct.ZoneThirdPartner
|
||||
Account *accountproto.ApiListOthersVO `json:"third_partner_account"`
|
||||
IsHided int64 `json:"is_hided"`
|
||||
}
|
||||
|
|
|
@ -3064,6 +3064,7 @@ func (s *Service) ApiGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_p
|
|||
ThirdPartnerMid: nil,
|
||||
SharingRatio: nil,
|
||||
},
|
||||
IsHided: consts.IsHided_Yes,
|
||||
}
|
||||
return
|
||||
}
|
||||
|
@ -3101,6 +3102,7 @@ func (s *Service) ApiGetZoneThirdPartnerList(ctx *gin.Context, req *zone_third_p
|
|||
vo = &zone_third_partner_proto.ZoneThirdPartnerApiVO{
|
||||
ZoneThirdPartner: zoneThirdPartner,
|
||||
Account: acctVO,
|
||||
IsHided: consts.IsHided_No,
|
||||
}
|
||||
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue