diff --git a/controllers/cms_store.go b/controllers/cms_store.go index 6f8755872..0a0ddb648 100644 --- a/controllers/cms_store.go +++ b/controllers/cms_store.go @@ -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 + }) +}