This commit is contained in:
苏尹岚
2021-03-29 15:32:20 +08:00
parent 34841c3bfd
commit 37c1599279
3 changed files with 42 additions and 0 deletions

View File

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