This commit is contained in:
suyl
2021-08-14 11:34:12 +08:00
parent 691e65f369
commit 7b4fecc3ec

View File

@@ -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() {
}