This commit is contained in:
苏尹岚
2021-03-29 16:29:55 +08:00
parent 37c1599279
commit f7b3a4df3f
3 changed files with 46 additions and 0 deletions

View File

@@ -394,3 +394,19 @@ func (c *ActController) GetVendorPopActs() {
return retVal, "", err
})
}
// @Title 获取平台流量活动Detail
// @Description 获取平台流量活动Detail
// @Param token header string true "认证token"
// @Param vendorID query int true "厂商ID当前只支持饿百3美团1"
// @Param storeID query int false "门店ID"
// @Param actID query int true "活动ID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /GetVendorPopActDetail [get]
func (c *ActController) GetVendorPopActDetail() {
c.callGetVendorPopActDetail(func(params *tActGetVendorPopActDetailParams) (retVal interface{}, errCode string, err error) {
retVal, err = act.GetVendorPopActDetail(params.Ctx, params.VendorID, params.StoreID, params.ActID)
return retVal, "", err
})
}