智慧农业后台管理
zengh
2022-07-06 99d5e944c228fc07ace318427a25d340b16612ac
src/main/java/org/springblade/modules/sale/controller/SaleController.java
@@ -137,17 +137,24 @@
   /**
    * 大屏销售统计
    */
   @PostMapping("/selctSaletCount")
   public R selctSaletCount(String year) {
      return R.data(saleService.selctSaletCount(year));
   @GetMapping("/selctSaletCount")
   public R selctSaletCount() {
      return R.data(saleService.selctSaletCount());
   }
   /**
    * 统计今年和去年的销售总额
    */
   @PostMapping("/selctSaletZ")
   @GetMapping("/selctSaletZ")
   public R selctSaletZ() {
      return R.data(saleService.selctSaletZ());
   }
   /**
    * 统计市场流通/去年流通量/本月流通量
    */
   @GetMapping("/selectMarketCirculate")
   public R selectMarketCirculate() {
      return R.data(saleService.selectMarketCirculate());
   }
}