This commit is contained in:
苏尹岚
2021-04-07 09:06:00 +08:00
parent d030002bf6
commit 8e1419f495

View File

@@ -1067,3 +1067,17 @@ func (c *StoreController) GetStoreAcctBalance() {
return retVal, "", err
})
}
// @Title 直接修改平台门店上下线
// @Description 直接修改平台门店上下线
// @Param token header string true "认证token"
// @Param storeID formData int true "门店ID"
// @Param status formData int true "状态,-1 下线1上线"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /UpdateVendorStoreBussinessStatus [post]
func (c *StoreController) UpdateVendorStoreBussinessStatus() {
c.callUpdateVendorStoreBussinessStatus(func(params *tStoreUpdateVendorStoreBussinessStatusParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}