Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DecorationQueryPosterData ¶
type DecorationQueryPosterData struct { /** * 页面 */ PageNum int32 `json:"pageNum"` /** * 每页展示数 */ PageSize int32 `json:"pageSize"` /** * 总数 */ Count int32 `json:"count"` /** * 海报详情 */ WmAppPostVos []WmAppPostVos `json:"wmAppPostVos"` }
type DecorationQueryPosterRequest ¶
type DecorationQueryPosterRequest struct { /** * 页码 */ PageNum int32 `json:"pageNum"` /** * 每页数量 */ PageSize int32 `json:"pageSize"` }
func (*DecorationQueryPosterRequest) DoInvoke ¶
func (req *DecorationQueryPosterRequest) DoInvoke(client mtclient.MeituanClient, appAuthToken string) (*DecorationQueryPosterResponse, error)
type DecorationQueryPosterResponse ¶
type DecorationQueryPosterResponse struct { Code string `json:"code"` Msg string `json:"msg"` Data DecorationQueryPosterData `json:"data"` TraceId string `json:"traceId"` }
func (*DecorationQueryPosterResponse) IsSuccess ¶
func (response *DecorationQueryPosterResponse) 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.