fix:广告主查询接口接口

This commit is contained in:
dylan 2024-08-15 10:45:52 +08:00
parent c14a3d5849
commit 97402c3720
2 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@ type AdvertiserTopQueryDTO struct {
ActivePeriod *int64 `json:"active_period,omitempty" required:"false" ` ActivePeriod *int64 `json:"active_period,omitempty" required:"false" `
} }
func (s *TaobaoUnideskRtaUserAdvertiserGetRequest) setIds(v []int64) *TaobaoUnideskRtaUserAdvertiserGetRequest { func (s *TaobaoUnideskRtaUserAdvertiserGetRequest) SetIds(v []int64) *TaobaoUnideskRtaUserAdvertiserGetRequest {
s.AdvertiserTopQueryDTO.Ids = &v s.AdvertiserTopQueryDTO.Ids = &v
return s return s
} }

View File

@ -9,12 +9,12 @@ type TaobaoUnideskRtaUserAdvertiserGetResponse struct {
} }
type AdvertiserTopDTO struct { type AdvertiserTopDTO struct {
Id int64 `json:"id"` Id int64 `json:"id"` // 广告主id
Name string `json:"name"` Name string `json:"name"` // 广告主名称
Media string `json:"media"` Media string `json:"media"` // 直投媒体
Status int `json:"status"` Status int `json:"status"` // 广告主状态1启用0停用
CustomerName string `json:"customer_name"` CustomerName string `json:"customer_name"` // 客户名称
MasterId int64 `json:"master_id"` MasterId int64 `json:"master_id"` // 组织id
OrganizationName string `json:"organization_name"` OrganizationName string `json:"organization_name"` // 组织名称
OptimizeType int `json:"optimize_type"` OptimizeType int `json:"optimize_type"` // 账户转化类型 1 引流 2 深转
} }