| | |
| | | import com.ruoyi.shop.service.shop.ShopService; |
| | | import com.ruoyi.shop.service.shop.ShopStaffService; |
| | | import com.ruoyi.shop.service.shop.ShopSuggestService; |
| | | import com.ruoyi.system.api.domain.dto.MgtShopIdByCodeDto; |
| | | import com.ruoyi.system.api.domain.poji.shop.Shop; |
| | | import com.ruoyi.system.api.domain.poji.sys.SysUser; |
| | | import com.ruoyi.system.api.domain.vo.MgtShopIdByCodeVo; |
| | | import com.ruoyi.system.api.domain.vo.ShopRelUserVo; |
| | | import com.ruoyi.system.api.model.QwH5LoginVo; |
| | | import com.ruoyi.system.api.model.QwUserDetailDto; |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | /** |
| | | * @description |
| | | * @author jqs |
| | | * @date 2023/6/9 10:18 |
| | | * @param suggestTag |
| | | * @return R |
| | | */ |
| | | @PostMapping("/deleteShopSuggestTag") |
| | | public R deleteShopSuggestTag(@RequestBody String tag) |
| | | public R deleteShopSuggestTag(@RequestBody String suggestTag) |
| | | { |
| | | shopSuggestService.deleteShopSuggestTag(tag); |
| | | shopSuggestService.deleteShopSuggestTag(suggestTag); |
| | | return R.ok(); |
| | | } |
| | | |
| | | @PostMapping("/getShopIdByCode") |
| | | public R<MgtShopIdByCodeVo> getShopIdByCode(@RequestBody MgtShopIdByCodeDto mgtShopIdByCodeDto) |
| | | { |
| | | MgtShopIdByCodeVo mgtShopIdByCodeVo = shopService.getShopIdByCode(mgtShopIdByCodeDto); |
| | | return R.ok(mgtShopIdByCodeVo); |
| | | } |
| | | } |