diff --git a/controllers/act.go b/controllers/act.go index 1feb30280..82d3609bf 100644 --- a/controllers/act.go +++ b/controllers/act.go @@ -482,3 +482,36 @@ func (c *ActController) GetActMtwmVendorSku() { return retVal, "", err }) } + +// @Title 查询饿百平台活动 +// @Description 查询饿百平台活动 +// @Param token header string true "认证token" +// @Param storeIDs query string false "门店IDs" +// @Param skuIDs query string false "skuIDs" +// @Param keyword query string false "关键字" +// @Param beginAt query string false "活动开始日期" +// @Param endAt query string false "活动结束日期" +// @Param actType query int false "折扣或者秒杀" +// @Param offset query int false "起始序号(以0开始,缺省为0)" +// @Param pageSize query int false "表页大小(缺省全部)" +// @Success 200 {object} controllers.CallResult +// @Failure 200 {object} controllers.CallResult +// @router /GetActEbaiVendor [get] +func (c *ActController) GetActEbaiVendor() { + +} + +// @Title 查询饿百平台活动sku +// @Description 查询饿百平台活动sku +// @Param token header string true "认证token" +// @Param storeID query int true "门店ID" +// @Param keyword query string false "关键字" +// @Param actType query int false "折扣或者秒杀" +// @Param offset query int false "起始序号(以0开始,缺省为0)" +// @Param pageSize query int false "表页大小(缺省全部)" +// @Success 200 {object} controllers.CallResult +// @Failure 200 {object} controllers.CallResult +// @router /GetActEbaiVendorSku [get] +func (c *ActController) GetActEbaiVendorSku() { + +}