Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type QueryPosterData ¶
type QueryPosterData struct {
/**
* 页面
*/
PageNum int32 `json:"pageNum"`
/**
* 每页展示数
*/
PageSize int32 `json:"pageSize"`
/**
* 总数
*/
Count int32 `json:"count"`
/**
* 海报详情
*/
WmAppPostVos []WmAppPostVos `json:"wmAppPostVos"`
}
type QueryPosterRequest ¶
type QueryPosterRequest struct {
Biz string `json:"biz"`
}
func (*QueryPosterRequest) DoInvoke ¶
func (req *QueryPosterRequest) DoInvoke(client mtclient.MeituanClient) (*QueryPosterResponse, error)
type QueryPosterResponse ¶
type QueryPosterResponse struct {
Code string `json:"code"`
Msg string `json:"msg"`
Data QueryPosterData `json:"data"`
TraceId string `json:"traceId"`
}
func (*QueryPosterResponse) IsSuccess ¶
func (response *QueryPosterResponse) IsSuccess() bool
type WmAppPostFoodVos ¶
type WmAppPostVos ¶
type WmAppPostVos struct {
/**
* 海报id
*/
PosterId int64 `json:"posterId"`
/**
* 图片地址
*/
SourcePicUrl string `json:"sourcePicUrl"`
/**
* 商品信息
*/
WmAppPostFoodVos []WmAppPostFoodVos `json:"wmAppPostFoodVos"`
/**
* 展示顺序
*/
Sequence int32 `json:"sequence"`
/**
* 审核状态 0:免审 1:审核中 2: 审核通过 3:审核驳回
*/
VerifyStatus int32 `json:"verifyStatus"`
/**
* 驳回原因
*/
RejectReason string `json:"rejectReason"`
/**
* 是否在c端展示
*/
Valid int32 `json:"valid"`
/**
* 海报生效开始日期,默认-1(格式:都是秒):
*/
DisplayStartDay int32 `json:"display_start_day"`
/**
* 海报生效结束日期,默认-1(格式:都是秒):
*/
DisplayEndDay int32 `json:"display_end_day"`
/**
* 海报生效开始时间,默认-1(格式:0至246060-1)
*/
DisplayStime int32 `json:"display_stime"`
/**
* 海报生效结束时间,默认-1(格式:0至246060-1)
*/
DisplayEtime int32 `json:"display_etime"`
/**
* 展示周期 海报投放周几,传入1,2,以此类推,默认[1,2,3,4,5,6,7]
*/
DisplayWeeks string `json:"display_weeks"`
}
Click to show internal directories.
Click to hide internal directories.