| | |
| | | /** |
| | | * 大屏销售统计 |
| | | */ |
| | | @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()); |
| | | } |
| | | } |