This commit is contained in:
苏尹岚
2021-02-03 14:36:11 +08:00
parent fb55dd6a85
commit 689e7b4bc7
4 changed files with 31 additions and 2 deletions

View File

@@ -1008,11 +1008,14 @@ func (c *StoreController) InsertStoreCategories() {
// @Title 创建平台门店
// @Description 创建平台门店
// @Param token header string true "认证token"
// @Param storeID formData int true "门店ID"
// @Param vendorID formData int true "平台ID"
// @Param payload formData string true "json数据store对象"
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /CreateVendorStore [post]
func (c *StoreController) CreateVendorStore() {
c.callCreateVendorStore(func(params *tStoreCreateVendorStoreParams) (retVal interface{}, errCode string, err error) {
return retVal, "", err
})
}