This commit is contained in:
邹宗楠
2023-02-09 16:47:21 +08:00
parent 945afc590b
commit 7705b65124
4 changed files with 54 additions and 11 deletions

View File

@@ -81,3 +81,17 @@ func (c *BiddingController) GetStoreBindStatus() {
return nil, "", nil
})
}
// NeedDeleteGetStoreBindStatus 查询门店是否绑定成功,成功之后创建本地门店
// 查询门店是否绑定成功,成功之后创建本地门店
// @Title 查询门店是否绑定成功,成功之后创建本地门店
// @Description 查询门店是否绑定成功,成功之后创建本地门店
// @Success 200 {object} controllers.CallResult
// @Failure 200 {object} controllers.CallResult
// @router /NeedDeleteGetStoreBindStatus [get]
func (c *BiddingController) NeedDeleteGetStoreBindStatus() {
c.callNeedDeleteGetStoreBindStatus(func(params *tBindNeedDeleteGetStoreBindStatusParams) (interface{}, string, error) {
dd := bidding.QueryNeedDeleteSku()
return dd, "", nil
})
}