yanghui
2022-11-30 74c71a6f2f6c745fd0506149ceabd38d9ce40dda
#feat 商家后台登录
1个文件已修改
4 ■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/java/com/panzhihua/community_backstage/api/ShopFlowerApi.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/community_backstage/src/main/java/com/panzhihua/community_backstage/api/ShopFlowerApi.java
@@ -166,7 +166,7 @@
    @GetMapping("selectSumOrderAndAmountByStoreId")
    @ApiOperation(value = "商家后台经营数据统计-上")
    public R selectSumOrderAndAmountByStoreId(@RequestParam("storeId") Long storeId){
        return communityService.selectSumOrderAndAmountByStoreId(this.getLoginUserInfo().getStoreIdId());
        return communityService.selectSumOrderAndAmountByStoreId(storeId);
    }
    /**
@@ -181,7 +181,7 @@
            @ApiImplicitParam(name = "type", value = "类型 1.近15天  2.近30天 3.今年"),
            @ApiImplicitParam(name = "tab", value = "tab 1.订单量  2.营业收入")})
    public  R selectOrderLineChart(@RequestParam("storeId") Long storeId,@RequestParam("type")  Integer type,@RequestParam("tab")  Integer tab){
        return communityService.selectOrderLineChart(this.getLoginUserInfo().getStoreIdId(),type,tab);
        return communityService.selectOrderLineChart(storeId,type,tab);
    }
    /**