| | |
| | | public R contractAmountAnalysisBySaleModel(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.contractAmountAnalysisBySaleModel(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄地区分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisByArea") |
| | | public R agingAnalysisByArea(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisByArea(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄行业分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysisByIndustry") |
| | | public R agingAnalysisByIndustry(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysisByIndustry(commonDTO); |
| | | } |
| | | |
| | | /** |
| | | * 账龄分析 |
| | | * @return R |
| | | */ |
| | | @PostMapping("/agingAnalysis") |
| | | public R agingAnalysis(@RequestBody AnalysisCommonDTO commonDTO) { |
| | | return statisticService.agingAnalysis(commonDTO); |
| | | } |
| | | } |