Merge pull request 'by' (#470) from feat-IRONFANS-118-Robin-2 into test
Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/470
This commit is contained in:
commit
320792b4fe
|
@ -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"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue