puzhibing
2023-11-25 53e7558400dcacecdce70e39ebfe1727740f9296
cloud-server-other/src/main/java/com/dsh/other/controller/StoreController.java
@@ -48,6 +48,7 @@
        return storeService.getStoreInfo(id);
    }
    /**
     * 根据城市管理员id获取门店
     */
@@ -55,6 +56,7 @@
    public Object getStoreByCityManagerId(@RequestBody Integer id){
        return storeService.getStoreByCityManagerId(id);
    }
    /**
     * 根据员工id获取门店
     */
@@ -70,6 +72,7 @@
    public Store getStoreById(@RequestBody Integer id){
        return storeService.getOne(new QueryWrapper<Store>().eq("id",id));
    }
    /**
     * 选择市区 展示全部门店
     */
@@ -80,6 +83,7 @@
    /**
     * 根据所选门店 查询经营时间
     *
     * @param oneId
     * @return
     */
@@ -87,7 +91,6 @@
    public Store getTime(@RequestBody String oneId){
        return storeService.getOne(new QueryWrapper<Store>().eq("name",oneId));
    }
    @PostMapping("/base/protocol/storeDetail/courseOfSto")
@@ -166,6 +169,7 @@
    /**
     * 根据门店坐标与传入坐标,计算距离
     *
     * @param distanceVo
     * @return
     */
@@ -232,12 +236,9 @@
    }
    /**
     * 获取门店列表
     *
     * @return
     */
    @ResponseBody
@@ -254,6 +255,7 @@
    /**
     * 获取门店列表
     *
     * @return
     */
    @ResponseBody
@@ -298,7 +300,6 @@
    }
    @ResponseBody
    @PostMapping("/base/store/queryStoreLists")
    @ApiOperation(value = "获取门店列表", tags = {"APP-加入玩湃", "APP-课程列表", "用户—预约场地"})
@@ -320,6 +321,7 @@
    /**
     * 根据门店模糊搜索店铺
     *
     * @param name
     * @return
     */
@@ -338,6 +340,7 @@
    /**
     * 根据门店
     *
     * @param id
     * @return
     */
@@ -366,6 +369,7 @@
    @Autowired
    private ISiteService siteService;
    @ResponseBody
    @PostMapping("/store/querySiteId")
    public List<Integer> querySiteId(@RequestBody Integer storeId){
@@ -384,8 +388,6 @@
        tBackRecord.setTime(new Date());
        backRecordService.save(tBackRecord);
    }
    @ResponseBody
@@ -409,6 +411,7 @@
    @Autowired
    private TStoreOtherConfigTrueService tStoreOtherConfigTrueService;
    @ResponseBody
    @PostMapping("/base/store/queryIndexSet")
    @ApiOperation(value = "获取门店首页设置 2.0", tags = {"APP-免费福利"})
@@ -438,9 +441,6 @@
    }
    @ResponseBody
    @PostMapping("/base/store/queryProvinceAndCity")
    @ApiOperation(value = "获取省市数据", tags = {"APP-加入玩湃"})
@@ -458,8 +458,6 @@
    }
    @ResponseBody
    @PostMapping("/base/store/queryAllCity")
    @ApiOperation(value = "获取所有开通城市", tags = {"APP-赛事活动列表", "用户—预约场地"})
@@ -474,7 +472,6 @@
            return ResultUtil.runErr();
        }
    }
    @ResponseBody