This commit is contained in:
richboo111
2023-09-27 10:54:33 +08:00
parent 5eda4afe26
commit 3d1cb2ef2b
4 changed files with 41 additions and 5 deletions

View File

@@ -1593,6 +1593,22 @@ func (c *StoreController) GetStoreAutoCallRiderInfo() {
})
}
// @Title 创建绑定抖音区域仓
// @Description 创建绑定抖音区域仓
// @Param token header string true "认证token"
// @Param vendorOrgCode formData string true "抖音门店总账号"
// @Param vendorStoreID formData int64 true "抖音门店总账号"
// @Param storeID formData int64 true "抖音门店ID"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /CreateDDWarehouse [post]
func (c *StoreController) CreateDDWarehouse() {
c.callCreateDDWarehouse(func(params *tStoreCreateDDWarehouseParams) (interface{}, string, error) {
err := cms.CreateDDWarehouse(params.VendorOrgCode, int64(params.VendorStoreID), int64(params.StoreID))
return nil, "", err
})
}
// @Title 打印机获取授权账号再京西菜市的绑定关系(其实就是根据平台门店id获取绑定门店id)
// @Description 打印机获取授权账号再京西菜市的绑定关系
// @Param token header string true "认证token"