puzhibing
2024-01-24 8bf9eb3f160e7701c3dcb070b4b512b2ac7f9431
ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java
@@ -25,6 +25,11 @@
    public R<String> getShopSubMchId(@RequestBody Long shopId);
    @PostMapping("/shop/getShopHFTXSubMchId")
    public R<ShopAuthenticationHftxVo> getShopHFTXSubMchId(@RequestBody Long shopId);
    @PostMapping("/shop/getShopByUserId")
    public R<ShopRelUserVo> getShopByUserId(@RequestBody Long userId);
@@ -175,4 +180,22 @@
     */
    @PostMapping("/shop/getTaskMsgList")
    R<List<MgtUserTaskMsgVo>> getTaskMsgList();
    /**
     * 根据城市code获取店铺
     * @param cityCodes
     * @return
     */
    @PostMapping("/shop/listShopByCityCode")
    R<List<Shop>> listShopByCityCode(@RequestBody List<String> cityCodes);
    /**
     * 根据ids获取店铺
     * @param ids
     * @return
     */
    @PostMapping("/shop/listShopByIds")
    R<List<Shop>> listShopByIds(@RequestBody List<String> ids);
}